Examveda

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

A. Run time error

B. hi hi

C. Nothing

D. hi

Answer: Option D


This Question Belongs to C Program >> Function

Join The Discussion

Related Questions on Function