Find the error in the code assuming that preprocessor directives are correct.
int fun (int val)
{
val > 20?
return(15):
return(30);
}
void main( )
{
int fun( int );
int final;
final = fun (20);
printf("%dn", final);
}
Reveal answer
Fill a bubble to check yourself