// Division with longs, demonstrating truncation #include #include int main(void) { // Prompt user for x long x = get_long("x: "); // Prompt user for y long y = get_long("y: "); // Divide x by y printf("%li\n", x / y); }