The following C code results in an error.
#include <stdio.h>
#define world( n ) printf( "t^^" #n" = %c", t##n )
int t3=1;
int main()
{
world(3);
}
#include <stdio.h>
#define world( n ) printf( "t^^" #n" = %c", t##n )
int t3=1;
int main()
{
world(3);
}
A. True
B. False
Answer: Option B
Join The Discussion