What is difference between c++ 11 and c++ 14?



What is difference between c++ 11 and c++ 14?..

Answer / Jayant Srivastava

C++11 (released in 2011) introduced many new features, such as auto, lambdas, range-based for loops, move semantics, and threading support. C++14 (released in 2014) further expanded on these features by adding rvalue references, constexpr functions, generalized initializers, and improved library functionality.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

What is #include sstream?

1 Answers  


What is cloning?

1 Answers  


Types of storage and scope of each type

2 Answers   CA,


Design a program to input a date from user in the form day/month/year (e.g. 2/6/2000) and report whether it’s a valid date or not. The program should take account of leap years. You will need to know that a leap year is a year that is exactly divisible by 4, except that century years are only leap years if they are divisible by 400.

1 Answers  


Can member functions be private?

1 Answers  


What is singleton class in c++?

1 Answers  


Why do we need pointers?

1 Answers  


Can turbo c++ run c program?

1 Answers  


What are the restrictions apply to constructors and destructors?

1 Answers  


What is cout flush?

1 Answers  


Is it legal in c++ to overload operator++ so that it decrements a value in your class?

1 Answers  


Write bites in Turbo c++ Header ("Include") Files.

1 Answers  


Categories