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;
}
β
Correct Answer: (B)
15