Question: What method should be used to pass an array to a function that does not modify the array and only looks at it using array





What method should be used to pass an array to a function that does not modify the array and only looks at it using array subscript notation : ! A constant pointer to nonconstant data.a O A nonconstant pointer to nonconstant data.b O A nonconstant pointer to constant data.co A constant pointer to constant data.d O ?what does the following mean class A: private B : ! class B will inherit all the private members from A without .a O .changining their access method class A will inherit all the non-private members from Band.bo .make them private access .CO class B will inherit all the private members from A and make them private access class A will inherit all the non-private members from B.do .without changing their access method ?what does the following mean class A: protected B : ! class A will inherit all the non-private members from Band. O .make them protected access class B will inherit all the protected members from A without .b O changining their access method class B will inherit all the protected members from A and.co make them protected access class A will inherit all the protected members from B without.do .changing their access method A function that only prints an array by using pointer arithmetic such as ++ptr to process every value should have a parameter that is : ! A nonconstant pointer to nonconstant data. O A constant pointer to constant data.bo A constant pointer to nonconstant data.co A nonconstant pointer to constant data.d O :void change int a[]), the compiler converts the parameter to : ! int &a .a o int a.bo int *consta.co const int a.do
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
