Examveda
Examveda

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

A. hi

B. hello

C. Compile time error

D. Nothing

Answer: Option C


This Question Belongs to C Program >> Function

Join The Discussion

Related Questions on Function