โช Choose the correct option.
What will be the output of the following program on GCC?
#include
float check(int);
int main(){
int i=45;
float c;
c=check(i);
printf("c=%f ",c);
return 0;
}
float check(int ch){
return (ch>=45?3.14 :6.28);
}