Courses
Tutorials
Interview Prep
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
DSA
20.4K+ articles
Python
19.6K+ articles
Experiences
15.8K+ articles
Interview Experiences
14.5K+ articles
Misc
7.7K+ articles
C++
3.8K+ articles
C++ Programs
1.5K+ articles
C++-Class and Object
27+ articles
cpp-references
17+ articles
C++-References
4 posts
Recent Articles
Popular Articles
Difference Between *& and **& in C++
Last Updated: 23 July 2025
In C++, the*(pointer to reference) and**(pointer to pointer reference)symbols are used in the context of pointers and references for manipulating memory addresses and deal...
read more
C++ Programs
C++
Picked
cpp-references
cpp-pointer
C++-References
cpp-double-pointer
CPP Examples
misc-cpp
lvalues references and rvalues references in C++ with Examples
Last Updated: 15 July 2025
Prerequisites: lvalue and rvalue in C++, References in C++“l-value” refers to a memory location that identifies an object. "r-value” refers to the data value that is store...
read more
Misc
C++
cpp-references
C++-References
How to add reference of an object in Container Classes
Last Updated: 15 July 2025
We all are familiar with an alias in C++. An alias means another name for some entity. So, a reference variable is an alias that is another name for an existing variable/o...
read more
C++ Programs
C++
C++-References
C++-Class and Object
Why do we need reference variables if we have pointers
Last Updated: 15 July 2025
Pointers: A pointer is a variable that holds memory address of another variable. A pointer needs to be de referenced with * operator to access the memory location it point...
read more
C++
Picked
pointer
cpp-references
cpp-pointer
C-Pointers
Pointers
C++-References
References
C-Advanced Pointer
Advanced Pointer
C-Pointer Basics