Examveda
Examveda

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);
}

A. True

B. False

Answer: Option B


This Question Belongs to C Program >> C Preprocessor

Join The Discussion

Related Questions on C Preprocessor