What will be the output of the following C code?
#include <stdio.h>
#define p( n ) printf( "t%%\n" #n " = %d", t##n )
int t3=10;
int main()
{
int x;
x=p(3);
}
#include <stdio.h>
#define p( n ) printf( "t%%\n" #n " = %d", t##n )
int t3=10;
int main()
{
int x;
x=p(3);
}A. t%
3=10
B. t3=10
C. t%3=10
D. t
%3=10
Answer: Option A

Join The Discussion