Assume that a vector 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 vector.
.
.
Click on the title for the solution
.
.
salarySteps[0]=30000;
.
Click on the title for the solution
.
.
This is the answer:
:
salarySteps[0]=30000;
Comments
Post a Comment