Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Question 3: Explaining pointers Here is some C++ code. It uses a single function, which takes a square matrix of non-negative integers as an input

Question 3: Explaining pointers

Here is some C++ code. It uses a single function, which takes a square matrix of non-negative integers as

an input and processes it. This question asks you to explain, in detail, what the code does.

#include

using namespace std;

const int n = 3;

int* all(int v[n][n]) { // Assumption: v contains non-negative integers

int m = 0;

int *ret = NULL;

for (int i=0; i < n; i++)

for (int j=0; j < n; j++)

if (v[i][j] > m) {

m = v[i][j];

ret = &(v[i][j]);

}

return ret;

}

int main() {

int t[n][n] = {{1, 23, 1}, {4, 0, 6}, {0, 12, 3}}; // Every element >= 0

int *p = all(t);

while (p != NULL) {

cout << *p << endl;

*p = 0;

p = all(t);

}

return 0;

}

Specifically, in your explanation address the following aspects:

1. What does all() do? If you were to give it a better name, what might that be? Pointers are usedwhy are they used?

2. What does the code output? (There is a description with one or two simple sentences.) Answer this first with respect to the given input, but then generalize to explain what it does for other matrices t.

(For guidance, work out how many lines are printed. It this always the same number, or does it depend on particular properties of the matrix?)

3. What variables, if any, undergo important state changes?

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Excel 2024 In 7 Days

Authors: Alan Dinkins

1st Edition

B0CJ3X98XK, 979-8861224000

More Books

Students also viewed these Databases questions

Question

What are the objectives of Human resource planning ?

Answered: 1 week ago

Question

Explain the process of Human Resource Planning.

Answered: 1 week ago

Question

3. Identify cultural universals in nonverbal communication.

Answered: 1 week ago