What will be the output of the following program on GCC?
Practice Basic Concept –
What will be the output of the following program on GCC?
#include <stdio.h>
int main(){
printf("%f
",(float)((int)((float)((int)6.5/2+3.5))-3.5));
return 0;
}