Predict the output of following C program.
Question 1
At first look, the expression (a*b)/c seems to cause arithmetic overflow because signed characters can have values only from -128 to 127 (in most of the C compilers), and the value of subexpression '(a*b)' is 1200. For example, the following code snippet prints -80 on a 32 bit little endian machine.
char d = 1200;
printf ("%d ", d);
Arithmetic overflow doesn't happen in the original program and the output of the program is 120. In C,
char and
short are converted to
int for arithmetic calculations. So in the expression '(a*b)/c', a, b and c are promoted to
int and no overflow happens.
Question 2
Output:
a = -10, b = 9
The statement 'a = -b--;' compiles fine. Unary minus and unary decrement have save precedence and right to left associativity. Therefore '-b--' is treated as -(b--) which is valid. So -10 will be assigned to 'a', and 'b' will become 9.
Try the following program as an exercise.