Examveda
Examveda

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

A. Compile time error

B. hi

C. Infinite hi

D. Nothing

Answer: Option C


This Question Belongs to C Program >> Function

Join The Discussion

Related Questions on Function