logo CodeStepByStep logo

arrayMysteryExam2

Language/Type: C++ arrays

Write the state of the array after each call to the following function, assuming that array and its length are passed as parameters:

void arrayMysteryExam2(int a[], int length) {
    for (int i = 0; i < length - 1; i++) {
        if (a[i] > a[i + 1]) {
            int temp = a[i];
            a[i] = a[i + 1];
            a[i + 1] = temp;
            a[0]++;
        }
    }
}
{5, 2, 5, 2}
{30, 10, 20, 50, 40}
{99, 88, 77, 66, 55, 44}

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.