/* * casting.c - */ #include int main(void) { int aa, bb; // declare int aa and bb float xx, yy; // delcare float xx and yy aa=5; bb=2; xx=aa/bb; yy=(float)aa/bb; printf("After xx=aa/bb the value of xx is: %f\n", xx); printf("After yy=(float)aa/bb the value of yy: is %f\n", yy); return 0; }