Examveda

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

A. hi

B. Run time error

C. Nothing

D. Varies

Answer: Option A


This Question Belongs to C Program >> Function

Join The Discussion

Related Questions on Function