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

Loading

โœช Choose the correct option.

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

#include 
#include
int main() {
printf("%d, %d, %d ", sizeof(3.14f), sizeof(3.14), sizeof(3.14l));
return 0;
}

A. 38081
B. 39664
C. 42586
D. 41125