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

10
0
0123456789
Syntax error
Infinite loop

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

All of these
Makes the debugging task easier.
Enhances the logical clarity of the program.
Helps to avoid repeated programming across programs.
Helps to avoid repeating a set of statements many times.

ANSWER DOWNLOAD EXAMIANS APP