Tutorials
Courses
Data Structure
Java
Python
HTML
Interview Preparation
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
SQL
Web Development
System Design
Aptitude
GfG Premium
Similar Topics
Web Technologies
37.4K+ articles
DSA
22.8K+ articles
Misc
8.8K+ articles
Mathematical
7.8K+ articles
Arrays
6.5K+ articles
C++ Programs
2.4K+ articles
C Language
1.8K+ articles
STL
1.3K+ articles
CPP-Functions
619+ articles
CPP-Library
254+ articles
Programming Language
/
C++
C++
5.1K+ posts
Recent Articles
Popular Articles
C++ STL Practice Problems
Last Updated: 22 April 2025
Standard Template Library (STL) is a C++ library that provides the built-in implementation of commonly used data structures and algorithms. These components are designed a...
read more
C++ Programs
C++
Take String as Input in C++
Last Updated: 06 March 2025
Strings are used to store the textual information. Taking a string as input is a very common operation used in almost all fields of programming. In this article, we will l...
read more
C++ Programs
C++
Lua Decision Making
Last Updated: 01 April 2025
In Lua, you can control your program's flow using if, elseif, and else statements, along with logical operators like and, or, and not. These tools help your code make deci...
read more
Java
C++
memcpy() in C++
Last Updated: 15 May 2025
C++ memcpy() function is a standard library function that is used to copy the specified number of bytes from one memory location to another memory location regardless of t...
read more
C++
cpp-string
CPP-Functions
Temperature Converter in C++
Last Updated: 16 June 2025
The Temperature Converter is a simple command-line application that allows users to convert temperatures between two temperature units i.e. Celsius and Fahrenheit.Features...
read more
C++
C++ Projects
Function Prototypes in C++
Last Updated: 16 June 2025
In C++, function prototype is a function declaration that tells the compiler about the name of the function, its return type and the number and type of parameters. With th...
read more
C++
CPP-Functions
Types of Recursion in C++
Last Updated: 16 June 2025
Recursion is a process where a function calls itself, either directly or indirectly to repeat the same task for smaller data. In C++, recursion occurs by writing a functio...
read more
C++
CPP-Functions
Function Call Stack in C++
Last Updated: 16 June 2025
C++ is a procedural and object-oriented language where functions are essential for controlling the program’s flow. When a function is invoked, control shifts to that funct...
read more
C++
CPP-Functions
Multiply Function that works for All Numeric Types in C++
Last Updated: 16 June 2025
In C++, function overloading allows us to create multiple functions with the same name but different parameter types. Using this concept, we can multiply functions to perf...
read more
C++
C++ Basic Programs
Types of Values in C++
Last Updated: 16 June 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
Memory Layout of C++ Program
Last Updated: 16 June 2025
The memory layout of a C++ program describes how different parts of a program are organized and stored in memory during execution. Knowing this layout helps developers und...
read more
C++
Risks of Using Raw Pointers in C++
Last Updated: 18 June 2025
In C++, raw pointers are variables that hold memory addresses of other variables or dynamically allocated memory. While raw pointers provide powerful low-level control ove...
read more
C++
cpp-pointer
Method Overloading in C++ Classes
Last Updated: 16 June 2025
In C++, method overloading refers to defining multiple functions within the same class with the same name but different parameter lists. It allows a class to provide diffe...
read more
C++
CPP-Functions
cpp-class
cpp-overloading
Reverse Array using Pointers in C++
Last Updated: 23 June 2025
Reversing an array is a common problem in programming where the task is to reorder the elements of the array so that the first element becomes the last, the second element...
read more
C++
cpp-array
cpp-pointer
Shape Calculator in C++
Last Updated: 20 June 2025
Shape Calculator is a console-based C++ application that demonstrates advanced OOP concepts through a system of shapes (e.g., Circle, Rectangle, Triangle, Square, Ellipse)...
read more
C++
C++ Projects
CPP-OOPs
1
2
3
4
...
342
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !