What will be the output of the following program on GCC?

		
					

Loading

โœช 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);
}

A. c=3.14
B. c=3.140000
C. c=6.280000
D. c=6.8