Q. What is the output of the program?
Code:
int main()
{
auto int a=10;
{
auto int a = 15;
printf("%d ", a);
}
printf("%d ", a);
return 1;
}
β
Correct Answer: (C)
15 10