Point out the error in the program
#includestdio.h
int f(int a)
{
a 20? return(10): return(20);
}
int main()
{
int f(int);
int b;
b = f(20);
printf("%d\n", b);
return 0;
}

Posted on by