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