Assume that the array arr has been declared. In addition, assume that ARR_SIZE has been defined to be an integer that equals the number of elements in arr. Write a statement that assigns to x the value of the next to last element of the array (x has already been declared).
.
.
Click on the title for the solution
.
.
.
Click on the title for the solution
.
.
This is the answer:
:
x=arr[ARR_SIZE-2];
Comments
Post a Comment