What will be the output of the following C code?
#define example(s,n) #s #n
main()
{
printf(example(hello,world));
}
#define example(s,n) #s #n
main()
{
printf(example(hello,world));
}A. example(hello,world)
B. example
C. hello,world
D. helloworld
Answer: Option D

Join The Discussion