/* * exp_div1.c - simple division */ #include int main(void) { int mm,ii; // declare 2 ints mm and ii float flo; // declare 1 float flo mm=33; // assign mm the value of 33 ii=mm/4; // divide int mm by 4 and assing to int ii flo=mm/4; // divide int mm by 4 and assing value to int flo printf(" The value of mm is %d\n", mm); printf(" The int avlue of ii after ii=(mm/4) is %d\n", ii); printf(" The float value of flo after flo=(mm/4) is %f\n", flo); return 0; }