I am looking for documentation to explain the changes in syntax/layout in C++ between C++11 and C++17. Where do I find syntax that is deprecated/obsolete and what takes its place?
For example: this type stuff
C11 c17
char* "name.txt"; const char* "name.txt";
(int ver1, int ver2); (ver1, ver2);
(happy cause, place, day); {happy cause, place, day};
Also, docs of what is no longer legal/allowed in c++? IS C++ syntax/layout the same for different platforms (MSVC++ vs GNU G++)?
Thank You