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