Examveda
Examveda

What will be the output of the following C code?
#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


This Question Belongs to C Program >> C Preprocessor

Join The Discussion

Related Questions on C Preprocessor