Discussion :: Control Structures
-
What will be the output of the given program?
#include<stdio.h>
void main()
{
int i=10;
printf("i=%d", i);
{
int i=20;
printf("i=%d", i);
i++;
printf("i=%d", i);
}
printf("i=%d", i);
}
Answer : Option C
Explanation :
The scope of second declaration of i is limited to the block in which it is defined. Outside of the block variable is not recognized.
Be The First To Comment