A
Q. What is the output of this program?
Code:
#include <stdio.h>
#define int char
main()
{
int i=50;
printf ("sizeof (i) =%d", sizeof (i));
}
#define int char
main()
{
int i=50;
printf ("sizeof (i) =%d", sizeof (i));
}
- Correct Answer - Option(A)
- Views: 10
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.