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. Run time error

C. Varies

D. Depends on compiler

Answer: Option A


This Question Belongs to C Program >> Function

Join The Discussion

Related Questions on Function