Q. What is the output of C Program.?
Code:
void show();
void main()
{
printf("PISTA ");
show();
}
void show()
{
printf("CACHEW ");
return 10;
}
β
Correct Answer: (C)
PISTA CASHEW with compiler warning