diff options
Diffstat (limited to 'wk4/lect/garbage.c')
-rw-r--r-- | wk4/lect/garbage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wk4/lect/garbage.c b/wk4/lect/garbage.c index 4e39235..1ac400c 100644 --- a/wk4/lect/garbage.c +++ b/wk4/lect/garbage.c @@ -9,6 +9,6 @@ int main(void) int scores[1024]; for (int i = 0; i < 1024; i++) { - printf("$i\n", scores[i]); + printf("%i\n", scores[i]); } } |