Question:Which of the following sets of functions do not qualify as overloaded functions?
A void fun(int, char *) void fun(char *,int)
B void x(int,char) int *x(int,char)
C int get(int) int get(int,int)
D void F(int *) void F(float *)
E All
+ AnswerB
+ Report