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");
}
#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

Join The Discussion