#include // mixed mode arithmetic int main() { int a, b, c; float d, e, f; a = 3; b = 5; d = 3.0; e = 5.0; c = b / a; printf("int to int division, c is %d\n", c); c = e / d; printf("float to float division, c is %d\n", c); c = b % a; printf("modulus, c is %d\n", c); f = b / a; printf("int to int division, f is %f\n", f); f = (float) b / a; printf("recast float to int, f is %f\n", f); f = e / d; printf("float to float division, f is %f\n", f); }