Q. What is the output of C Program with functions?
Code:
void show(int);
void show(float);
int main()
{
printf("ANT\n");
return 0;
}
void show(int a)
{
printf("Integer") ;
}
void show(float b)
{
printf("Void");
}
β
Correct Answer: (D)
Compiler error