Object Oriented Programming Using C++ - Section 7 Multiple Questions and Answers.
Exercise Questions ::
Object Oriented Programming
Published by:Michael Daani
Published by:Michael Daani
Published by:Michael Daani
34. | A pointer is |
| |
| A. | the address of a variable |
| B. | an indication of the variable to be accessed next |
| C. | a variable for storing addresses |
| D. | the data type of an address variable |
|
|
Published by:Michael Daani
35. | Which of the following statements will assign the address of the age variable to the agePtr pointer? |
| |
| A. | agePtr = &age; |
| B. | agePtr = *age; |
| C. | &agePtr = age; |
| D. | *agePtr = age; |
|
|
Published by:Michael Daani
«»