Question.6
A code review replaces all NULL with nullptr in a C++ firmware project. Which benefits does this provide?
NULL
nullptr
Select Answer
Performance improvement -- nullptr is faster than NULL at runtime
Three benefits: correct overload resolution, prevents accidental integer assignment, and proper template type deduction
No benefit -- NULL and nullptr are identical in C++
Only cosmetic -- readability improvement with no functional difference