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
Misc
7.7K+ articles
C++
3.8K+ articles
C++ Programs
1.5K+ articles
C Language
1.3K+ articles
cpp-pointer
97+ articles
C-Pointers
65+ articles
cpp-iterator
56+ articles
cpp-references
17+ articles
Advanced Pointer
4+ articles
C++-const keyword
6 posts
Recent Articles
Popular Articles
Type Qualifiers in C++
Last Updated: 26 October 2025
Type qualifiers are keywords that modify the properties of data types, influencing how variables, pointers, or references can be used.They specify how a variable can be us...
read more
C++ Programs
C++
Picked
CPP-Basics
C++-const keyword
CPP Examples
misc-cpp
How to use const with Pointers in C++?
Last Updated: 23 July 2025
In C++, the const keyword is used as a type qualifier for defining read-only (immutable) objects that cannot be modified anywhere in their lifetime. It can be used in seve...
read more
C++ Programs
C++
Picked
cpp-pointer
C++-const keyword
CPP Examples
Const keyword in C++
Last Updated: 17 January 2026
The const keyword is used to declare read-only entities such as variables, objects, pointers, function parameters, return types, and member functions. A const variable mus...
read more
Technical Scripter
C++
CPP-Basics
C++-const keyword
Const vs Regular iterators in C++ with examples
Last Updated: 15 July 2025
Prerequisite: Iterators in STLIterators are objects similar to pointers which are used to iterate over a sequence and manipulate the container elements. The advantage of u...
read more
C++ Programs
Difference Between
C++
cpp-iterator
C++-const keyword
Different ways to use Const with Reference to a Pointer in C++
Last Updated: 12 July 2025
Before moving forward with using const with Reference to a Pointers, let us first see what they are one by one: Pointers are used to store the address of variables or a...
read more
C++ Programs
C++
cpp-references
cpp-pointer
C++-const keyword
Advanced Pointer
How to modify a const variable in C?
Last Updated: 21 February 2026
Whenever we use const qualifier with variable name, it becomes a read-only variable and get stored in .rodata segment. Any attempt to modify this read-only variable will t...
read more
Misc
C Language
C-Pointers
C++-const keyword