#include<stdio.h> 
int f(i

Loading

โœช Choose the correct option.

#include 
int f(int a) {
a > 20? return(10): return(20);
}
int main() {
int f(int);
int b;
b = f(20);
printf("%d ", b);
return 0;
}

A. Error: Prototype declaration
B. No error
C. Error: return statement cannot be used with ternary operator.
D. None of above

Leave a Comment