What is the output of C Program with functions.?

int show();

void main()
{
int a;
printf("PISTA COUNT=");
a=show();
printf("%d", a);
}

int show()
{
return 10;
}

Posted on by