Assume that array1 and array2 are both 25-element integer arrays. Indeicate whether each of the following statements is legal or illegal.a. array1 = array2;b. cout<< array1;c. cin >>array2;

Respuesta :

Answer:

a. array1 = array2; Illegal

b. cout<< array1; Illegal

c. cin >>array2; Illegal

Explanation:

a. array1 = array2;

Illegal, since the assignment operator doesn't work to directly assign the values into other array.

b. cout<< array1;

Illegal, since the index number in not defined, if you want to print all the elements in the array1 then run a for loop to iterate over the entire loop.

c. cin >>array2;

Illegal, since the index number is not defined, if you want get input from the user then run a for loop to iterate over the entire loop.