Question

[C++11]: 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.

Answer

This answer is hidden. It contains 140 characters.