The following code is for questions 1, 2 and 3:
a(int i, int j)
{
i = j + i;
printf("%d 0x%x\n", i, j);
j -= 4;
}
main()
{
int i, j;
i = 2;
j = 10;
printf("%d %d\n", i, j);
a(i, j);
printf("%d %d\n", i, j);
}
|
The following choices will be for questions 1 through 3:
|
Question 2: What is the second line of output when the above code is compiled and executed?
Question 3: What is the third line of output when the above code is compiled and executed?