Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

heres an e.g Whats wrong withthe followingfunction? void Square (int &x) { x = x

ID: 3612681 • Letter: H

Question

heres an e.g Whats wrong withthe followingfunction? void Square (int &x) {    x = x *x;    return0; } Solution::: should not contain the returnstatement Below is the question i need help with q. Whats wrong with the following function void Power (int x, int y) { int result; result = 1; while (y > 0) {    result = result *x;    y--; } { heres an e.g Whats wrong withthe followingfunction? void Square (int &x) {    x = x *x;    return0; } Solution::: should not contain the returnstatement Below is the question i need help with q. Whats wrong with the following function void Power (int x, int y) { int result; result = 1; while (y > 0) {    result = result *x;    y--; } {

Explanation / Answer

heres an e.g Whats wrong withthe followingfunction? void Square (int &x) {    x = x *x;    return0; } Solution::: should not contain the returnstatement              or return statement should be        return;
Below is the question i need help with q. Whats wrong with the following function void Power (int x, int y) { int result; result = 1; while (y > 0) {    result = result *x;    y--; } int Power (intx, int y) {
int result; result = 1; while (y > 0) {    result = result *x;    y--; }
return result;
}