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
Misc
7.7K+ articles
C++
3.7K+ articles
C++ Programs
1.5K+ articles
C Language
1.3K+ articles
CPP-Functions
619+ articles
CPP-Basics
102+ articles
C Basics
78+ articles
C-Data Types
39+ articles
Java-Data Types
28+ articles
cpp-data-types
58 posts
Recent Articles
Popular Articles
Types of Values in C++
Last Updated: 26 July 2025
In C++, values represent data that variables hold or expressions produce during a program's execution. These values can be categorized based on how they behave, how they a...
read more
C++
cpp-data-types
Difference Between DWORD and Unsigned Int in C++
Last Updated: 23 July 2025
In C++, DWORD and Unsigned Int are commonly used data types to store non-negative integer values. Both the data types may appear similar but there are some important diff...
read more
C++ Programs
C++
Picked
cpp-data-types
CPP Examples
misc-cpp
POD Type in C++
Last Updated: 23 July 2025
In C++, POD is short for Plain Old Data. It is a class or a struct that is defined using a class or struct keyword that has a very simple structure without any constructor...
read more
C++ Programs
C++
Picked
cpp-data-types
CPP Examples
Difference Between int and size_t in C++
Last Updated: 23 July 2025
In C++, both int and size_t are very important data types that are used to represent integers. However, there are some key differences between them that the users should ...
read more
C++ Programs
C++
Picked
cpp-data-types
CPP Examples
misc-cpp
Printing Boolean Values in C++
Last Updated: 23 July 2025
In C++, a boolean data type can only have two possible values true and false. However, when we print the boolean data types using the standard output streams like cout the...
read more
C++ Programs
C++
Picked
cpp-data-types
CPP-Output
cpp-manipulators
CPP Examples
How to Convert Char Array to Int in C++
Last Updated: 23 July 2025
In C++, a character array is treated as a sequence of characters also known as a string. Converting a character array into an integer is a common task that can be performe...
read more
C++ Programs
C++
Picked
cpp-data-types
cpp-array
CPP Examples
misc-cpp
How Do I Detect Unsigned Integer Overflow in C++?
Last Updated: 23 July 2025
In C++, unsigned integer is a datatype that can store only zero and non-negative integer values. According to C++ standard, unsigned integer overflow is defined behavior (...
read more
C++ Programs
C++
Picked
cpp-data-types
integer-overflow
CPP Examples
<type_traits> Header in C++
Last Updated: 26 August 2025
type_traits is a C++ header file that provides templates to check and manipulate types during compile time or It helps us ask questions about types (like "Is this an integ...
read more
C++ Programs
C++
Picked
cpp-data-types
cpp-template
How to Create a Stack of User-Defined Data Type in C++?
Last Updated: 23 July 2025
In C++, we have a stack data structure that follows the LIFO (Last In First Out) rule and allows operations such as push, pop, and top at one end of the structure. In this...
read more
C++ Programs
C++
Picked
STL
cpp-data-types
cpp-stack
CPP Examples
How to Handle Large Numbers in C++?
Last Updated: 23 July 2025
In C++, when working with very large numbers the standard data types like int can become insufficient due to their limited range. In this article, we will learn how we can...
read more
C++ Programs
C++
Picked
cpp-data-types
C++-Misc C++
CPP Examples
How to Define a Static Data Member of Type const std::string?
Last Updated: 23 July 2025
In C++, static data members are members that exist independently of any object of the class. A static data member is shared by all objects of the class, meaning there is o...
read more
C++ Programs
C++
Picked
cpp-data-types
cpp-string
C++-Class and Object
CPP-OOPs
CPP Examples
How to Find the Size of an Array Using Pointer to its First Element?
Last Updated: 23 July 2025
In C++, arrays are plain old data types that do not have any associated functions to find their size. In this article, we will discuss how we can determine the size of the...
read more
C++ Programs
C++
Picked
cpp-data-types
cpp-array
cpp-sizeof
CPP Examples
How to Find the Capacity of a Vector in Bytes in C++?
Last Updated: 23 July 2025
In C++, vectors are used to store the collection of similar types of data and are able to automatically resize themself in order to accommodate more data. In this article,...
read more
C++ Programs
C++
Picked
cpp-data-types
cpp-vector
cpp-sizeof
CPP Examples
Character Arithmetic in C++
Last Updated: 23 July 2025
Character arithmetic in C++ involves performing mathematical operations on characters. In C++, characters are represented using the char data type, which is essentially an...
read more
C++
Picked
Geeks Premier League
cpp-data-types
cpp-operator
Geeks Premier League 2023
Difference Between string and char[] Types in C++
Last Updated: 23 July 2025
In C++, we can store the sequence of characters i.e. string in two ways: either as a std::string object or char array. In this article, we will discuss some major differen...
read more
C++ Programs
C++
Picked
cpp-data-types
cpp-string
cpp-array
CPP Examples
1
2
3
4