A
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;
}
{
int a;
printf("TIGER COUNT=");
a=show();
printf("%d", a);
}
int show()
{
return 15;
return 35;
}
- Correct Answer - Option(A)
- Views: 27
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.