21/10/2020
https://www.guvi.in/courses-product?course=cppEng
GUVI | Learn to code in your native language
No more attending the interview with the same old resume you and your peers share. We will help you stand out from the crowd by helping you showcase your skills in a better way.
30/05/2020
https://www.youtube.com/watch?v=m1SppHkMHRA&t=1s
Operator Overloading as a member function of a user defined type.
Operator Overloading in C++ as a member function of a class
How to overload an operator for a user defined type as a member function of the user defined type.
24/05/2020
https://youtu.be/QA6gOMTAWMM
unorderedmap in C++ . How to insert key-value pairs into the map, and check for key in unorderedmap?
unordered_map is the container in which all elements are not having any ordering,The key type must be hashable, as the hash-value will determine the index or...
04/05/2020
https://youtu.be/_zkaUALa69g
SharedPointers in C++. What is the need of shared pointers? How to use shared pointers ?
Why and where to use shared pointers in c++. It is an effective memory management in c++ where there are more than one reference to an object. Reference coun...
01/01/2020
Unique pointers are the wrappers around the raw pointers that provides single place of ownership to a resource.
Implements movable semantics.
Basics of unique pointer in C++
Basic Working of Unique Pointer.
29/12/2019
Concept of short circuit in logical operators