Examveda
Examveda

What will be the output of the following C code?
#include <stdio.h>
#define display( n ) printf( "a" #n " = %d", a##n )
int main()
{
   display(3);
}

A. a3

B. 31

C. a 3

D. error

Answer: Option D


This Question Belongs to C Program >> C Preprocessor

Join The Discussion

Related Questions on C Preprocessor