✪ Choose the correct option.
What will be the output of the following program on GCC?
#include
int main(){
double x,d=5.0;
int y;
x=d*(x=2.5/d);
printf("x=%lf ",x);
x=d*(y=(int)2.5 + 1.5);
printf("x=%lf y=%d ",x,y);
return 0;
}