+ 1
Please help me in this c language
int a[5] for (i=0;i<5;i++){ scanf("%d",&a[i]); }
2 Answers
+ 3
Princess joy Latoza welcome to Sololearn. It would help us if you were specific about what help you need.
Are you trying to resolve why this code gets a syntax error? The answer is because there is a missing semicolon at the end of the first line:
int a[5];
Have you found the C tutorial here?
https://www.sololearn.com/Course/C/?ref=app
0
đ€đ€