Examveda
Examveda

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

A. Run time error

B. 32

C. int

D. const

Answer: Option B


This Question Belongs to C Program >> Function

Join The Discussion

Related Questions on Function