Q. What is the output of C Program?
Code:
int myshow(int);
void main()
{
myshow(5);
myshow(10);
}
int myshow(int b)
{
printf("Received %d, ", b);
}
β
Correct Answer: (A)
Received 5, Received 10,