A
Q. What is the output of C Program.?
Code:
void show();
void main()
{
printf("PISTA ");
show();
}
void show()
{
printf("CACHEW ");
return 10;
}
void main()
{
printf("PISTA ");
show();
}
void show()
{
printf("CACHEW ");
return 10;
}
- Correct Answer - Option(C)
- Views: 24
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.