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