Question: Given the following int num = 25; int* numPtr = # Assume that num is stored at address 1000 and numPtr is stored at address
Given the following
int num = 25;
int* numPtr = #
Assume that num is stored at address 1000 and numPtr is stored at address 980.
What is the value of the expression *numPtr?
A. 25
B. 1000
C. 980
D. The expression will produce a syntax error.
-----------------------------
Given the following:
int num = 25;
int* numPtr = #
Assume that num is stored at address 1000 and numPtr is stored at address 980. What is the value of the expression numPtr?
A. 25
B. 1000
C. 980
D. The expression will produce a syntax error.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
