Learning CppCpp ImplemenationsPerformance ImplementaionsCommmon C++ ErrorsOn this pageCommmon C++ ErrorsRuntime ErrorsWhat is Runtime Errors`use of undefined identifier 'null'here vector v is null and in C++ null != empty// ❎❎ This will NOT WORKvector<int> v;if (v.empty) { cout << "Empty";}Compile Time Errors