C Programming
What will be the output of the following piece of code?for(i = 0; i<10; i++);printf("%d", i);

Infinite loop
0123456789
10
0
Syntax error

ANSWER DOWNLOAD EXAMIANS APP