Question
C++ Quiz Questions ------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2. The operator ________ is used to create a dynamic array. ------------------------------------------------------------------------------------------------------------------------------------------------------------------ 4. When used as a _____________, * is called
C++ Quiz Questions
------------------------------------------------------------------------------------------------------------------------------------------------------------------
2. The operator ________ is used to create a dynamic array.
------------------------------------------------------------------------------------------------------------------------------------------------------------------
4. When used as a _____________, * is called the dereferencing operator.
------------------------------------------------------------------------------------------------------------------------------------------------------------------
10. If p is a dynamic array, then the statement ?delete [ ] p does what?
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
14. A pointer variable is declared using an asterik, *, between the data type and the variable. ? For example, ___ declares p to be a pointer variable of type int.?
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
15. In question 14, what does p point to?
------------------------------------------------------------------------------------------------------------------------------------------------------------------
16.
int *p;
int num;
Using the above statements, write a line of code that sets the value of p equal to the address of num.
------------------------------------------------------------------------------------------------------------------------------------------------------------------
18.
If p is a pointer variable of type int, the statement:
*p = 25;?
does what?
------------------------------------------------------------------------------------------------------------------------------------------------------------------
22. What does the following statement accomplish:
p = new int[10]?
------------------------------------------------------------------------------------------------------------------------------------------------------------------
25.
Consider the following statement:
int* p, q;
This statement could lead to what type of misinterpretation?
------------------------------------------------------------------------------------------------------------------------------------------------------------------
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