Write a statement that declares a vector of char named streetAddress that contains exactly eighty elements.
.
.
Click on the title for the solution
.
.
vector <char> streetAddress(80);
.
Click on the title for the solution
.
.
This is the answer:
:
vector <char> streetAddress(80);
Comments
Post a Comment