What does the following code do?
int number;int* finger;finger = &number;number = 2;*finger++;
a. Increments the contents of finger.
b. Increments the contents of number.
c. Increments the contents of both finger and number.
d. Adds 2 to number.
e. Produces a dangling pointer.
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.