Solved

Assuming MyValues Is an Array of Int Values and Index

Question 7

True/False

Assuming myValues is an array of int values and index is an int variable, both of the following statements do the same thing.
1. cout << myValues[index] << endl;
2. cout << *(myValues + index) << endl;

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions