STL in C++
STL in C++ C++ provides a collection of ready-made containers, functions, and tools that make common programming tasks much easier. […]
STL in C++ C++ provides a collection of ready-made containers, functions, and tools that make common programming tasks much easier. […]
C++ Templates Sometimes you write a function that performs the same task for different data types. For example, you may
C++ File Handling Sometimes a program needs to store information so that it can be used later, even after the
C++ Exception Handling While running a program, sometimes an unexpected problem occurs. For example, a program may try to divide
Encapsulation & Abstraction in C++ When a program becomes larger, simply putting data and functions inside classes is not enough.
C++ Polymorphism Polymorphism is an important concept of Object-Oriented Programming. The word polymorphism means “many forms.” In C++, it allows
C++ Inheritance Inheritance is an important concept of Object-Oriented Programming. It allows one class to use the properties and functions
Object-Oriented Programming in C++ When programs become large, keeping everything inside variables and functions can become difficult. We need a
Structures, Union & Enum in C++ So far, we have used variables to store individual values and arrays to store