Examveda

What will be the output of the following C code?
#include <stdio.h>
void main()
{
    #define max 37;
    printf("%d", max);
}

A. 37

B. Compile time error

C. Varies

D. Depends on compiler

Answer: Option B


This Question Belongs to C Program >> Function

Join The Discussion

Related Questions on Function