Write a Program to print the sum of digits of a given number.
Write a Program to print the sum of digits of a given number. #include <stdio.h> #include <conio.h> int main () { Β Β int no […]
Read moreTechnology + Coding
Write a Program to print the sum of digits of a given number. #include <stdio.h> #include <conio.h> int main () { Β Β int no […]
Read moreGray 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 specifier used to implement an important aspect of OOPs known as data hiding . Access […]
Read moreASCII 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 is stand for Binary Coded Decimal . Binary code is the best way to represent the decimal digit […]
Read moreDestructors in C++ Destructors in C++ DESTRUCTOR A Destructor is also a special member function like a constructor .Β A destructor destroys the class […]
Read moreProgram 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++ There are three types of Constructor : 1. Default Constructor 2. Parameterized Constructor 3. […]
Read moreConstructor in C++ Constructor in C++ Constructor is a member function of a class , whose name is the same as the class name […]
Read moreConcepts of OOPs in C++ Concepts of OOPs in C++ There are some basic concepts of OOPs : Class Object Encapsulation Abstraction Polymorphism Inheritance […]
Read moreOOPs Concepts in C++ OOPs Concepts in C++ OOPs stands for Object Oriented Programming . An object oriented programming language uses object in its […]
Read more
Recent Comments