Added return 0 statement to the end of the code, to ensure a properly compiling program.
pull/21569/head
katiepillar6 2018-11-14 07:14:44 -08:00 committed by Christopher McCormack
parent 4b92a1d593
commit c90dfd2f81
1 changed files with 2 additions and 0 deletions

View File

@ -34,6 +34,8 @@ int main () {
for (int i = 0; i < 5; i++) {
printf("Item on index %d is %d\n", i, array[i]);
}
return 0;
}
```