Examveda
Examveda

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

A. 32

B. 45

C. Compile time error

D. Varies

Answer: Option C


This Question Belongs to C Program >> Function

Join The Discussion

Related Questions on Function