Examveda

What will be the output of the following C code?
#define F abc
#define B def
#define FB(arg) #arg
#define FB1(arg) FB(arg)
main()
{
    printf(FB(F B));
    FB1(F B);
}

A. F B

B. Error

C. FB

D. "FB"

Answer: Option A


This Question Belongs to C Program >> C Preprocessor

Join The Discussion

Related Questions on C Preprocessor