Question: #include #include #include bool testArrayAccess ( ) { int array [ ] = { 0 , 1 , 2 , 3 , 4 , 5

#include
#include
#include
bool testArrayAccess(){
int array[]={0,1,2,3,4,5};
int* pArray = array;
std::size_t arraySize = sizeof(array)/ sizeof(array[0]);
for(int i=0; i< arraySize; i++){
if(array[i]!=pArray[i])
return false;
}
return true;
}
int main(){
std::string message = testArrayAccess()? "Pass!":"Fail!";
std::cout << message << std::endl;
return 0;
}
apply this to do task 1.6

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!