Data Structure
Java
Python
HTML
Interview Preparation
Interview Prep
Tutorials
Tracks
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
DSA
20.0K+ articles
Python
19.6K+ articles
Experiences
15.8K+ articles
Interview Experiences
14.3K+ articles
School Learning
11.1K+ articles
JavaScript
9.9K+ articles
Java
9.3K+ articles
Misc
7.7K+ articles
Mathematics
5.6K+ articles
C++ 11
17 posts
Recent Articles
Popular Articles
C++ 11 Standard
Last Updated: 23 July 2025
C++ 11, officially known as ISO/IEC 14882:2011, is a significant version of the C++ programming language standard, published in 2011. It marked a major fix up of the langu...
read more
C++
Picked
C++ 11
How to Implement Move Assignment Operator in C++?
Last Updated: 23 July 2025
In C+, the move assignment operator is used to transfer the ownership of the resources from one object to another when the object is assigned some rvalue references or usi...
read more
C++ Programs
C++
Picked
C++ 11
CPP Examples
How to Define a Move Constructor in C++?
Last Updated: 23 July 2025
In C++, we have amove constructor which is a part of C++11 move semantics and is used to handle resources for temporary and rvalue objects. In this article, we will learn ...
read more
C++ Programs
C++
Picked
cpp-class
cpp-constructor
C++-Constructors
C++ 11
CPP-OOPs
CPP Examples
Memory Model in C++ 11
Last Updated: 23 July 2025
Memory Model is a specification that describes how the program interacts with the memory. In C++ 11, a standardized memory model is created to provide the solution to issu...
read more
C++
Picked
Geeks Premier League
C++ 11
Geeks Premier League 2023
std::initializer_list in C++ 11
Last Updated: 15 January 2024
The std::initializer_list class template was added in C++ 11 and contains many built-in functions to perform various operations with the initializer list. It provides memb...
read more
C++
Picked
Geeks Premier League
C++ 11
Geeks Premier League 2023
Move Assignment Operator in C++ 11
Last Updated: 26 August 2025
Move assignment is a way to transfer resources (like memory, files, etc) from one object to another without copying them.Example:C++#include iostream#include vector// for ...
read more
C++
Picked
Geeks Premier League
C++ 11
Geeks Premier League 2023
C++ 11 - <atomic> Header
Last Updated: 23 July 2025
In C++11, the atomic header introduces a powerful mechanism for managing concurrent access to shared data in multithreaded applications. This header provides atomic types ...
read more
C++
Picked
Geeks Premier League
C++ 11
Geeks Premier League 2023
Alignas in C++ 11
Last Updated: 23 July 2025
The alignas is a type specifier which was introduced in C++11. It provides custom alignment to variables and user-defined datatypes like class and struct. Alignment refers...
read more
C++
Picked
C++ 11
std::move_iterator in C++ 11
Last Updated: 05 October 2023
std::move_iterator was introduced in C++11, with the ability to convert regular iterators into move iterators. Instead of copying, the std::move_iterator allows the STL to...
read more
C++
Picked
Geeks Premier League
C++ 11
Geeks Premier League 2023
noexcept Operator in C++ 11
Last Updated: 15 July 2024
Exception handling is an important concept in C++. Keywords like 'try', 'catch', and 'throw' are often associated with exception handling. Although these keywords are ver...
read more
C++
Picked
C++ 11
Trailing Return Type in C++ 11
Last Updated: 06 September 2023
The trailing return type syntax, a new method of indicating a function's return type, was introduced in C++11.Before C++11, the return type of a function was typically spe...
read more
C++
Picked
C++ 11
C++ Standards and Implementations
Last Updated: 23 July 2025
C++ programming language is widely used and known for its power, versatility, and performance. C++ is an extension of the C programming language created by Danish computer...
read more
C++
Picked
C++ 23
C++ 17
C++ 20
C++ 11
C++ 14
C++ 11 - <cfenv> Header
Last Updated: 06 June 2023
C++ 11 comes with new features and improvements and one of the main addition is the cfenv header that helps the programmers or developers with great control over the float...
read more
C++
Picked
C++ 11
thread_local Storage in C++ 11
Last Updated: 15 May 2023
Thread local storage (TLS) is a feature introduced in C++ 11 that allows each thread in a multi-threaded program to have its own separate instance of a variable. In simple...
read more
C++
Picked
C++ 11
C++ 11 - <cinttypes> Header
Last Updated: 10 May 2023
The header offers type aliases and functions for manipulating integer types with particular sizes and signedness, as a part of the C++11 standard. Its aim is to present a ...
read more
C++
Picked
C++ 11
1
2