Question.2
A developer writes:
int error_code = nullptr;
Will this compile?
Select Answer
Yes -- nullptr is equivalent to 0
nullptr
No -- nullptr cannot convert to int; this is a compile-time error that catches a logic bug
int
Yes -- but only with explicit casting
No -- but NULL would work here
NULL