A
Q. What is the output the program?
Code:
int main()
{
register a=80;
auto int b;
b=a;
printf("%d ", a);
printf("%d ", b);
return -1;
}
{
register a=80;
auto int b;
b=a;
printf("%d ", a);
printf("%d ", b);
return -1;
}
- Correct Answer - Option(B)
- Views: 21
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.