What will be the output of the following program on GCC compiler?
![]()
Practice Declarations and Initializations –
What will be the output of the following program on GCC compiler?
#include<stdio.h>
#include<math.h>
int main() {
printf("%d, %d, %d
", sizeof(3.14f), sizeof(3.14), sizeof(3.14l));
return 0;
}