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 
int main() {
float a;
a=4/2;
printf(" %f %f",a,4/2);
return 0;
}

A. 2.000000 0.000000
B. 0.000000 0.000000
C. 2.000000 2.000000
D. 2.000000 2