Vidyalelo
C Programming · Q202

Function

Programming · C Programming · question 202

Q202

What will be the output of the following C code? #include void m(int k) printf("hi"); void m(double k) printf("hello"); void main() m(3);

A.
hi
B.
hello
C.
Compile time error
Answer
D.
Nothing

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board