1.

What will be the output of the following C code?
#include <stdio.h>
void fun();
int main()
{
#define max 15
fun();
return 0;
}
void fun()
{
printf("%d n", max * 15);
}

A. 15
B. Compilation Error
C. Garbage value
D. 225
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs