A
Q. What is the output of C program with functions?
Code:
int show();
void main()
{
int a;
a=show();
printf("%d", a);
}
int show()
{
return 15.5;
return 35;
}
void main()
{
int a;
a=show();
printf("%d", a);
}
int show()
{
return 15.5;
return 35;
}
- Correct Answer - Option(B)
- Views: 21
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.