Question: 1. (CO 1) How do you create a variable that can hold a hexadecimal memory address (pointer)? a. double * num2; b. double num2*; c.
1. (CO 1) How do you create a variable that can hold a hexadecimal memory address (pointer)?
| a. | double * num2; |
| b. | double num2*; |
| c. | double** num2; |
| d. | double **num2; |
2. (CO 1) The statement float *ptrNum = &number; has the same meaning as _____.
| a. | float ptrNum = &number; |
| b. | *float ptrNum = &number; |
| c. | float ptrNum* = &number; |
| d. | float* ptrNum = &number;
|
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
