insurence exam AIC MT (Generalist & IT) Mock Test Series 2025 Programming and Data Structure Programming in C Function Recursion
What will be the output of the following program fragment?
int i = 10;
void main( )
{
int i = 20;
{
int i = 30;
printf(“%d, %d”, i, : :i);
}
}
1
30,10
2
30,20
3
20,30
4
More than one of the above
5
None of the above