Consider the following C++ statements (5 points)
int x, y; int *a; x = 17; y = x; x = y; a = &y;
Which statement from the following changes the value of y to 33?Briefly explain your choice in your own words.i) &x = 33;ii) *y = 33;iii) x = 33;iv) *a = 33;
Consider the following C++ statements (5 points) int x, y; int *a; x = 17; y = x; x = y; a = &y; Which statement f
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am