Assume that an integer array is defined as x []= {3, 4, 5, 6} and stored in memory
starting at address 8000. What will be printed on the screen after each of the
following statements: (Each Question is 3 points)
printf("%d\n",
*(x+1));
printf("%d\n",
&x[1]);
printf("%d\n",
*x+2);
printf("%d\n",
x[0]);
printf("%d\n",
x);