Question: Given the following array, complete the following tasks according to the given comments: int intArray[] = {1, 4, 5, 6, 7}; int size = sizeof(intArray)/sizeof(int);
Given the following array, complete the following tasks according to the given comments: int intArray[] = {1, 4, 5, 6, 7}; int size = sizeof(intArray)/sizeof(int); // 1) declare a vector object called myIntVector, which copies the second, third, fourth element of intArray (e.g., 4, 5, 6) to myIntVector // 2) add a fourth element (100) to myIntVecoter // 3) change the size of myIntVector to 10 and fill the new elements with value 0. // 4) display the content of myIntVector
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
