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
C++
3.7K+ articles
C Language
1.3K+ articles
cpp-class
58+ articles
cpp-constructor
37+ articles
Static Keyword
24+ articles
C-Variable Declaration and Scope
14+ articles
C++-Static Keyword
12+ articles
cpp-storage-classes
4 posts
Recent Articles
Popular Articles
volatile Qualifier in C++
Last Updated: 23 July 2025
volatile keyword in C++ is used to declare variables that can be modified by external factors outside the program's control. This qualifier informs the compiler that the v...
read more
C++ Programs
C++
Picked
cpp-storage-classes
CPP Examples
Redeclaration of global variable in C
Last Updated: 28 May 2017
Consider the below two programs:C // Program 1int main(){ int x; int x = 5; printf(%d, x); return 0; } Output in C: redeclaration of ‘x’ with no link...
read more
C Language
cpp-storage-classes
C-Variable Declaration and Scope
C++ mutable keyword
Last Updated: 23 July 2025
The mutable storage class specifier in C++ (or use of mutable keyword in C++)auto, register, static and extern are the storage class specifiers in C. typedef is also consi...
read more
C++
cpp-storage-classes
Static Objects in C++
Last Updated: 23 July 2025
Prerequisite: Static Keyword in C++An object becomes static when a static keyword is used in its declaration. Static objects are initialized only once and live until the p...
read more
C++
cpp-class
cpp-storage-classes
cpp-constructor
C++-Static Keyword
Static Keyword