Use the new operator to allocate memory for an array of 100 integers (do not assign the resulting pointer).
.
.
Click on the title for the solution
.
.
new int[100];
.
Click on the title for the solution
.
.
This is the answer:
:
new int[100];
Comments
Post a Comment