Write a Program to print the sum of digits of a given number. #include <stdio.h> #include <conio.h> int main () { int no […]
Read moreCategory: Coding
Write a Program to swap the values of two variables.
Write a Program to swap the values of two variables. #include <stdio.h> #include <conio.h> int main () { int a,b,t ; […]
Read moreWrite a Program to convet temperature from degree centigrade to farenheit. F = C * (9/5) + 32
Write a Program to convet temperature from degree centigrade to farenheit. F = C * (9/5) + 32 #include <stdio.h> #include <conio.h> int […]
Read moreWrite a Program to compute the addition , subtraction , product , quotent and remainder of two given numbers.
Write a Program to compute the addition , subtraction , product , quotent and remainder of two given numbers. Write a Program to compute the […]
Read moreProgram to Find Quotient and Remainder in C++
Program to Find Quotient and Remainder in C++ Program to Find Quotient and Remainder in C++ #include <iostream> using namespace std; int main() […]
Read moreProgram to Print Multiplication Table in C++
Program to Print Multiplication Table in C++ Program to Print Multiplication Table in C++ #include<iostream> using namespace std; int main(){ int number; cout<< “Enter the number for printing multiplication table”<< endl; cin >>number; // printing the multiplication number for(int i=1; i<11; i++){ cout<< number <<” X “ << i <<” = “<< number*i <<endl; } […]
Read moreCalling Function in Python
Calling a Function in Python After creating a function in Python we can call it by using the name of the functions Python followed by parenthesis […]
Read morePython function
Python Function Python Functions is a block of statements that return the specific task. The idea is to put some commonly or repeatedly done tasks […]
Read moreFunction Overriding in C++
Function Overriding in C++ Function Overriding in C++ Function overriding in C++ is termed as the redefinition of base class function in its derived […]
Read moreHierarchical Inheritance in C++
Hierarchical Inheritance in C++ Hierarchical Inheritance in C++ Hierarchical Inheritance : Inheriting is a method of inheritance where one or more derived classes is […]
Read more
Recent Comments