What is displayed by this program?
```
#include
void seven(int *xp);
int
main(void)
{
int x, y;
x = 5; y = 6;
seven(&x);
seven(&y);
printf("%4d%4d\n", x, y);
return(0);
}
void
seven(int *xp)
{
int y;
y = *xp + 2;
*xp = y * 3;
}
```
a. 21 24
b. 21 8
c. 5 6
d. 5 8
e. none of the above
A
You might also like to view...
What is an upgrade installation? What are its limitations?
What will be an ideal response?
An interaction in Processing is the result of an action between the computer and the end-user
Indicate whether the statement is true or false
The scale of a file inserted as a watermark can be changed
Indicate whether the statement is true or false
____ occurs when an algorithm does not contain any instructions about when to stop the recursion.
A. Tail recursion B. Iteration C. Binary recursion D. Infinite recursion