Examveda
Examveda

What will be the output of the following C code?
#include<stdio.h>
#define inline
inline f(char a)
    {
        #ifdef inline
        printf("%c",a);
        #endif 
    }
main()
{
    f('a');
}

A. Error

B. a

C. No error but nothing will be printed as output

D. 97

Answer: Option B


This Question Belongs to C Program >> C Miscellaneous

Join The Discussion

Related Questions on C Miscellaneous