What will be the output of the following C code?
#define display(text) "$" #text
main()
{
printf(display(hello world));
}
#define display(text) "$" #text
main()
{
printf(display(hello world));
}A. hello world
B. $helloworld
C. $hello world
D. error
Answer: Option C

Join The Discussion