/* Page 60, number 11, instructions: The instruction privided here alters the problem. Follow the instruction here. The program is as follows (This is ONE program, not FOUR programs). Fill the blanks in the comments. The blanks are marked ??? */ #include main() { int i, j, k, l; i = 6; j =2; i += j /* i = ??? now */ ; i-- /* i = ??? now */ ; k = i * j / i /* k = ??? now */ ; l = i % ++j /* l = ??? now */ ; printf("j is now %d\n", j++); /* Print ??? */ printf("j is now %d\n", j); /* Print ??? */ printf("i, k, l is now %d, %d, %d\n", i, k, l); return 0; }