What is the output of the following code fragment?
int* х, у;
int arr [5] 1, 2, 3, 4, 5};
x = &arr [0]
y = arr[0];
Cout << *x << 10; = cout < *x << " " << y < endl;
*х = 10;
Cout << *x << " << y << endl;
x = x + 2;
y = arr[0]
count << *x << "" << y << endl;

Write a loop that will search an array of int values, myArray, to determine if it contains the integer value stored in a variable myInt and display the message "Found" if it finds it. Clearly comment your code. You may assume the myArray and myInt are both declared and initialised