0
Array
#include <stdio.h> #include <stdlib.h> int  main() { int i, arr[5] = {25, 30, 35, 40, 55}; for( i=0; i<5; i++) { printf("%d  ", *arr); arr++; /* 'main':| 9|error: lvalue required as increment operand| */ } return 0; }
7 Answers
+ 1
Thank you sir
+ 1
Ok thanks
0
Is it a valid certificate for interviews by going through solo learn
0
Could you answer
0
Do I need certification
simi sam Please,
Use the đSEARCH... bar future!
https://www.sololearn.com/Discuss/532576/?ref=app
https://www.sololearn.com/Discuss/1063546/?ref=app
0
As you have done in solo learn
0
Or u can-
int i, arr[5]={25,30,35,40,55};
for (i=0; i<5; i++){
printf("%d", arr[i]);
}