Question
5. In the statement q = *ptr_m; Which statement below is the most accurate? A. The address of the pointer ptr_m is being assigned to
5. In the statement q = *ptr_m;
Which statement below is the most accurate?
A. The address of the pointer ptr_m is being assigned to the variable q.
B. The value of the pointer ptr_m is being assigned to the variable q.
C. The value of the variable ptr_m is pointing to is being assigned to the variable q.
D. The variable q must also be a pointer.
10. How many bytes of memory are reserved for a double pointer variable?
A. The same number of bytes as is reserved for a double variable.
B. The number of bytes reserved is the number that are reserved for any hex address.
C. It is impossible to know this answer.
D. Two bytes.
12. How much memory is reserved for the following variables
in MS Visual C++?
int k;
int *k_ptr;
float q, *q_ptr;
A. 10
B. 13
C. 16
D. 18
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started