Assume that an array of int variables named salarySteps that contains exactly five elements has been declared. Write a single statement to assign the value 30000 to the first element of this array.
.
.
Click on the title for the solution
.
.
.
Click on the title for the solution
.
.
This is the answer:
:
salarySteps[0]=30000;
Comments
Post a Comment