A
Q. What will be the output of this code?
Code:
void main()
{
int i=0;
for(;i++;printf("%d", i));
printf("%d", i);
}
{
int i=0;
for(;i++;printf("%d", i));
printf("%d", i);
}
- Correct Answer - Option(A)
- Views: 24
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.