0
Diference between C++11 and C++14
What is better to start study for beginner learners?C++11 or C++14?is the older version better to study for a future job?
4 odpowiedzi
+ 1
C++11 and C++14 are both standards for the C++ language and include more features than the last version, including the features of all previous versions. Essentially, the are updates. What the standards do, are give a set of rules and specifications that compilers will follow (vc++, gcc, clang, Intel etc.). It would probably be better to learn the latest standard's features, since most compilers will be updated to that version of the standard.
0
Thanks for answer!So,where can I find these new standards? a sure source like books or good tutorial?Raluca P.
0
Most (good) beginner C++ books are C++11, such as Bjarne Stroustrup's books, however, there are plenty of tutorials online for the new C++14 features, such as Bo Qain's tutorials, however, it's better to research the features of both C++11 and C++14 individually, as it's better to grasp the concepts.
0
Is the Sololearn version of C++ C++14 or C++11? I'm confused which version I'm learning on Sololearn right now.