0
Hi.please helpe find the orror
2 Respuestas
+ 9
https://code.sololearn.com/ch57NL5u2iOD/?ref=app
Here it is corrected the only problems were some format specifiers but nothing too bad 👍👍
+ 3
This is not how printf works in C.
You should write like
int a=10;
printf("Value of a: %d", a) ;
Seems like you missed %d in every printf statement