Q. What is the output of C Program with functions.?
Code:void main()
{
int a;
printf("TIGER COUNT=");
a=show();
printf("%d", a);
}
int show()
{
return 15;
return 35;
}
β
Correct Answer: (A)
TIGER COUNT=15