Multiple Choice
Which of the following statements about pointer initialization and values is false?
A) Prior C++11, the value specified for a null pointer was 0 or NULL.
B) When 0 is assigned to a pointer, it's converted to a pointer of the appropriate type.
C) The value 0 is the only integer value that can be assigned directly to a pointer variable without first casting the integer to a pointer type.
D) In the new standard, you should use the constant null_ptr to initialize a pointer instead of 0 or NULL.
Correct Answer:

Verified
Correct Answer:
Verified
Q7: Which of the following is false about
Q8: Which of the following best describes the
Q9: Assuming that t is an array and
Q10: (*max)(num1, num2, num3);:<br>A) Is the header for
Q11: The & operator can be applied to:<br>A)
Q13: Which of the following can have a
Q14: All of the following can cause a
Q15: Pointers may be assigned which of the
Q16: Consider the following function: void reverse(char *string1,
Q17: Which of the following gives the number