ISRO exam 2017 – Question 62 with Solution
In this video we are going to discuss another question which was asked in the exam of ISRO
62. What will be the output of the following C code?
#include {stdio.h}
main( )
{
int i;
for ( i=0; i{5; i++ )
{
int i = 10;
printf ( “ %d”, i ); i++;
}
return 0;
}
(a) 10 11 12 13 14
(b) 10 10 10 10 10
(c) 0 1 2 3 4
(d) Compilation error