The following C code results in an error.
#include #define world( n ) printf( "t^^" #n" = %c", t##n )int t3=1;int main(){ world(3);}
#include #define world( n ) printf( "t^^" #n" = %c", t##n )int t3=1;int main(){ world(3);} 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);} Correct Answer
মোঃ আরিফুল ইসলাম
Feb 20, 2025