/**** * * Program comments are missing on purpose. For Lab 4, your job is to figure * what's going on in this program using a debugger. See the Lab 4 writeup for * more details. * */ #include int main() { int i; double x; i = 1/2; x = 1/2; i = 1/2.0; x = 1/2.0; x = 1/2 * 2; x = 2 * 1/2; x = 2.0 * 1/2; x = 2 * 1/2.0; return 0; }