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.
d. In the new standard, you should use the constant null_ptr to initialize a pointer instead of 0 or NULL.
You might also like to view...
Given the function prototype, what is wrong with the following function call?
float aFunction (int, int&, float); // function prototype float y = aFunction (b, a + b, 3.7); // function call
A string object's ____________ method returns true if the sub string being searched for is contained within the string; otherwise it returns false.
a. Contains b. Sub string c. Index Of d. Insert
The four objects that correspond to the standard devices on the system include ________, __________, and __________.
Fill in the blank(s) with the appropriate word(s).
A slide show is another name for a PowerPoint presentation.
Answer the following statement true (T) or false (F)