Examveda

What will be the output of the following C code?
#include <stdio.h>
void main()
{
    m();
    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