What will be the output of the following C code?
#include <stdio.h>
void m()
{
printf("hi");
}
void main()
{
m();
}
#include <stdio.h>
void m()
{
printf("hi");
}
void main()
{
m();
}A. hi
B. Run time error
C. Nothing
D. Varies
Answer: Option A

Join The Discussion