C and C++


The C programming language is the foundation of many modern languages like C++, Java, JavaScript, Python, and many many others.
12 Mar 2025
C++ is a high-performance, general-purpose programming language that supports both procedural and object-oriented programming paradigms.
13 Mar 2025
C program is a simple language, lets see the language syntax and the minimum valid program.
13 Mar 2025
Cpp program language is based on the C language syntax, and it is extending its features, lets see what is the minimum Cpp program.
13 Mar 2025
C and C++ program style is the same, so they are using the same syntax and rules.
13 Mar 2025
The C/C++ programming language consists mostly of expressions and statements. In fact, many statements are also expressions and vice versa.
14 Mar 2025
In C++, variables are used to store data values of different types. Data types specify the kind of values that variables can hold.
14 Mar 2025
User-defined data types are data types that are defined by the programmer. These data types are created by combining or extending existing primitive data types or other user-defined data types.
14 Mar 2025
In C and C++, variables can be modified and qualified using various modifiers, qualifiers, and storage classes.
14 Mar 2025
Normal code is executed from top to bottom, starting from the main function, Flow control in C and C++ refers to the mechanisms that control the sequence in which statements are executed.
14 Mar 2025
In C and C++, operators are special symbols that represent computations or operations that are performed on variables and values.
14 Mar 2025
Functions in C and C++ are essential building blocks of programs, enabling code modularity, reuse, and clarity.
14 Mar 2025
In C and C++, functions can be categorised based on various characteristics such as how they are used, how they are declared, and what they do.
14 Mar 2025
In C++, operator overloading allows you to redefine or "overload" most of the built-in operators to work with user-defined data types (like classes and structs).
14 Mar 2025
In C++, we have several different data types like `int`, `string`, `bool` etc. An object can be created out of any of those types.
14 Mar 2025
The constructor is used to _construct_ the object of a class. It is a special member function that outlines the steps that are performed when an instance of a class is created in the program.
14 Mar 2025
Inheritance allows a new class (derived class) to inherit properties and behavior from an existing class (base class).
14 Mar 2025
Template is the way for generic programming, it is a code that works independently of data type.
14 Mar 2025
C++ Library is a library of code described by the C++ standard, and it delivers the standard implementation of C++.
14 Mar 2025
C++ added its own library which depends on **Templates** and called it STL or Standard Template Library.
14 Mar 2025
iterators are objects that point to elements within a container and allow you to traverse the container's elements in a standardized way.
14 Mar 2025
STL Algorithms are algorithms that already build to be used directly, rather than re-build them from scratch.
14 Mar 2025