True/False
Given the declaration
int *p;
The statement
p = new int[50];
dynamically allocates an array of 50 components of type int and p contains the base address of the array.
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q32: What is the output of the following
Q33: Which of the following can be used
Q34: What is the value of x after
Q35: Given the declaration int *a;, the statement
Q36: What is the output of the following
Q38: A class _ automatically executes whenever a
Q39: The statement that declares board to be
Q40: In C++, virtual functions are declared using
Q41: In C++, _ is called the address
Q42: Consider the following statements:In the function pointerParameters,