โช 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;
}
What will be the output of the following program on GCC compiler?
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;
}