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