A
Q. What is the output of C Program with functions?
Code:
void show(int);
void show(float);
int main()
{
printf("ANT
");
return 0;
}
void show(int a)
{
printf("Integer") ;
}
void show(float b)
{
printf("Void");
}
void show(float);
int main()
{
printf("ANT
");
return 0;
}
void show(int a)
{
printf("Integer") ;
}
void show(float b)
{
printf("Void");
}
- Correct Answer - Option(D)
- Views: 27
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.