|
Assignment and Side Effects II | |
|
| |
j and
k after the following code executes?
int k = 3, j = 1;
if (k = j++)
k = 4;
m
after the following code executes?
int m = 6;
m == 7;
int m;
for(m = 3; m--; ) printf("Line.\n");
int i = 1, m = 1, n = 2;
i = --m || n++;
What is the value of each variable after the code executes?
| Answer | Control Constructs |