int m = 7, n = 4; int x; x = m / n; // x is 1 float y; // Type conversion y = (float)m / (float)n; // y is 1.75