Corrected Syntax index.md (#29260)

There was a syntax error - missing ';'
This commit is contained in:
Tanmoy Sarkar
2019-01-08 23:23:27 +05:30
committed by Christopher McCormack
parent 4745843717
commit 863fd135ea

View File

@ -86,7 +86,7 @@ int main(void){
int a = 0; int a = 0;
do { do {
a++ a++;
} while(a == -123); } while(a == -123);
printf("%i\n", a); printf("%i\n", a);