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