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
AnswerD.
Nothing
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board