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