Please check if any error | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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; } }

8th Oct 2020, 2:03 AM
Mwape Daka
Mwape Daka - avatar
2 Answers
+ 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.
8th Oct 2020, 2:18 AM
Ipang
+ 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.
8th Oct 2020, 2:46 AM
Arsenic
Arsenic - avatar