What is the output of C Program with functions.?

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

int show()
{
return 15;
return 35;
}

Posted on by