Examveda
Examveda

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

A. hi

B. Compile time error

C. Nothing

D. Varies

Answer: Option B


This Question Belongs to C Program >> Function

Join The Discussion

Related Questions on Function