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