C++ considered (almost) super set of C; but still there are certain things which works in C and not in C++.
Is there any feature/facility which is a valid C++03 but not working in C++11 ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There are few incompabilities :
export templateis removed (not deprecated, really removed)autoas storage specifier anymorealignof,char16_t,char32_t,constexpr,decltype,noexcept,nullptr,static_assertandthread_localalso, for future versions :
std::auto_ptris deprecatedMaybe I’m missing others, but if your code uses those, you’ll have to fix it.
Almost all C++2003 features still are the same or are more precisely specified for compiler implementations in C++2011.