What will be the output of the following program?
#include <stdio.h> void m(int k) { printf("hi"); } void m(double k) { printf("hello"); } void main() { m(3); }
Not registered? Create an account
Forgot Password?
Already a registered user? Login