0
Please check if any error
#include <stdio.h> #include <stdlib.h> int main(){ int i=0; while(i<10) { printf ("the value of is %d \n",i); i=i+1; } }
2 Réponses
+ 3
There are invalid characters in your code. Try to save it in SoloLearn and view the code using a web browser, you will see those invalid character.
+ 2
Looks like either you wrote the code in and word processor or you have copied pasted it from somewhere, which is why(as Ipang already said) there are some invalid characters in your code.