ProDeveloperTutorial.com

Archives

  • February 2025
  • January 2025
  • December 2024

Categories

  • C Language Tutorial
  • C++ Tutorial
  • Coding Interview Questions
  • DataStructure and Algorithms
  • HR questions
  • Programming articles
  • Shell Scripting Tutorial
  • System Design
  • Uncategorized
ProDeveloperTutorial.com
ProDeveloperTutorial.com

What are You Looking For?

  • Coding Interview Questions
  • C++ Tutorial
  • DataStructure and Algorithms
  • C Language Tutorial
ProDeveloperTutorial
onFebruary 10, 2025

C++ 11 feature: dynamic_cast with RTTI

“dynamic_cast” is new concept in C++ 11. dynamic_cast is used at runtime to check the correctness of down casting. As it checks…
Discover More
ProDeveloperTutorial
onFebruary 10, 2025

C++ 11 feature: const_cast

“const_cast” is new concept in C++ 11. const_cast is used to remove the constantness from references and pointers. I agree we used…
Discover More
ProDeveloperTutorial
onFebruary 10, 2025

C++ 11 feature: static_cast

Casting is a new feature in C++. Below are the different types of csating available: 1. Static Cast 2. Dynamic Cast 3. Const Cast 4.…
Discover More
ProDeveloperTutorial
onFebruary 10, 2025

C++ 11 feature: typealias

“typealias” is a new feature introduced in C++ 11. It is the replacement of typedef. “using” is the keyword used in…
Discover More
ProDeveloperTutorial
onFebruary 10, 2025

C++ 11 feature: auto and decltype

auto and decltype are the 2 new keywords that have been added in C++ 11. In this chapter we shall see how to use both of them. auto: auto…
Discover More
ProDeveloperTutorial
onFebruary 10, 2025

C++ 11 feature: Delegating constructor

Delegating constructor is a new concept in C++ 11. Why we need delegating constructor? 1. Delegating constructor is used to prevent code…
Discover More
ProDeveloperTutorial
onFebruary 10, 2025

C++ 11 feature: constexpr

“constexpr” is a new concept in C++ 11. In this chapter we shall have a look at “constexpr” topic.…
Discover More
ProDeveloperTutorial
onFebruary 10, 2025

C++ 11 feature: nullptr

“nullpt” is a new concept that has been introduced in C++ 11. Earlier to C++ 11, NULL has been defined as: #define NULL 0 But…
Discover More
ProDeveloperTutorial
onFebruary 10, 2025

C++ 11 Smart pointers : weak_ptr tutorial and example

unique_ptr is a smart pointer available in C++ 11. Weak pointer is used along with shared pointers. You cannot create a standalone unique…
Discover More
ProDeveloperTutorial
onFebruary 9, 2025

C++ 11 Smart pointers : unique_ptr tutorial and example

unique_ptr is a smart pointer available in C++ 11. Below are the points that we shall see in unique_ptr. 1. Points on unique_ptr 2. Syntax for…
Discover More

Posts pagination

Previous 1 2 3 … 70 Next
ProDeveloperTutorial.com
Tutorials and Programming Solutions
© 2024 — ProDeveloperTutorial. All Rights Reserved.