Assume that ip has been declared to be a pointer to int and that result has been declared to be an array of 100 elements. Assume further that ip has been initialized to point to an element in the first half of the array. Write a statement that makes ip point to the next element in the array.
.
.
Click on the title for the solution
.
.
.
Click on the title for the solution
.
.
This is the answer:
.
ip+=1;
Comments
Post a Comment