Is the following code legal, deprecated or illegal in C++0x?
char* p = "foobar";
I originally asked this question here as a comment.
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.
The conversion
is deprecated in C++98/C++03, and has been removed (that is, §4.2/2 removed) in C++0x.
So, the code is not valid in C++0x.
However, MinGW g++ 4.4.1 still only emits a warning, not error.