Inline Function in C++ Inline Function in C++ Definition: An inline function is a function that is expanded in line when it is invoked. […]
Read moreMonth: May 2024
Floating Point Numbers
Floating Point Numbers Floating Point Numbers “Floating pointβ refers to a set of data types that encode real numbers, including fractions and decimals. Floating-point […]
Read moreGray Code
Gray Code Gray Code Gray Code is a binary numbering system where two successive numbers differ in only one bit . The Gray Code […]
Read moreAccess Specifiers in C++
Access Specifiers in C++ Access Specifiers in C++ Access specifier used to implement an important aspect of OOPs known as data hiding . Access […]
Read moreASCII CODE
ASCII CODE ASCII CODE ASCII Code stands for American Standard Code for Information Interchange and is pronounced as “ask-ee” . ASCII code is universally […]
Read moreBCD CODE
BCD CODE BCD CODE BCD Code is stand for Binary Coded Decimal . Binary code is the best way to represent the decimal digit […]
Read moreDestructors in C++
Destructors in C++ Destructors in C++ DESTRUCTOR A Destructor is also a special member function like a constructor .Β A destructor destroys the class […]
Read moreSome programs of loop in Python
Program of loop in Python Python program to print a multiplication table of a given number. # if the given range is 10 given_number […]
Read moreTypes of Constructor in C++
Types of Constructor in C++ Types of Constructor in C++ There are three types of Constructor : 1. Default Constructor 2. Parameterized Constructor 3. […]
Read moreConstructor in C++
Constructor in C++ Constructor in C++ Constructor is a member function of a class , whose name is the same as the class name […]
Read more
Recent Comments