#define int charvoid main(){ int i = 65; printf("sizeof(i)=%d", sizeof(i));}
#define int char
void main()
{
int i = 65;
printf("sizeof(i)=%d", sizeof(i));
}
sizeof(i)=2
sizeof(i)=1
Compiler Error
None of These
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option B
Explanation :
Since the #define replaces the string int by the macro char.
Be The First To Comment