Question: using c, Write a function called pow_xy. The function should be passed 2 parameters, as illustrated in the prototype below. int pow_xy(int *xptr, int y);
using c,
Write a function called pow_xy. The function should be passed 2 parameters, as illustrated in the prototype below.
int pow_xy(int *xptr, int y);
Assuming that xptr contains the address of variable x, pow_xy should compute x to the y power, and store the result as the new value of x. The function should also return the result.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
