Examveda
Examveda

What will be the output of the following C code?
#include<stdio.h>
#define ram 557
int main()
{
    #ifndef ram
    printf("yes");
    #endif
    printf("no");
}

A. error

B. yes

C. no

D. yesno

Answer: Option C


This Question Belongs to C Program >> C Preprocessor

Join The Discussion

Related Questions on C Preprocessor