summaryrefslogtreecommitdiff
path: root/wk2/sect2/array.c
diff options
context:
space:
mode:
Diffstat (limited to 'wk2/sect2/array.c')
-rw-r--r--wk2/sect2/array.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/wk2/sect2/array.c b/wk2/sect2/array.c
index 6602e50..fbd76f3 100644
--- a/wk2/sect2/array.c
+++ b/wk2/sect2/array.c
@@ -11,5 +11,8 @@ int main(void)
while (n < 1);
int array[n];
array[0] = 1;
- for
+ for (int i = 1; i < n; i++)
+ {
+
+ }
}