Sunday, 19 March 2017

MULTIPLICATION OF MATRIX IN C++

Tags
Program : Multiply two matrix in C++. #include<iostream.h> #include<conio.h> void......

Wednesday, 15 February 2017

program to find prime number after giving number in C++

Tags
#include<iostream> using namespace std; int main () { int i,j,num; cout<<"Enter......

program to show prime number in C++.

Tags
//Prime number program in dev C++. #include<iostream> using namespace std; int......

Tuesday, 14 February 2017

swap two number without using third variable in Dev c++

Tags
// program to swap two number without using third variable. #include<iostream> using......

Swap two number in Turbo C+

Tags
//swap two numbers using three variables. #include<iostream.h> #include<conio.h> void......

program to check odd or even number in TurboC++

Tags
After doing this program you assure that, how to use if and else condition in......

Tuesday, 7 February 2017

Simple Multiplication table in C++

Tags
//Multiplication table in C++ and understand concept of for loop. #include<iostream.h> #include<conio.h> void......

Monday, 6 February 2017

switch control in C and C++.

Tags
Switch condition switch condition is used to print multiple value as  a......

Saturday, 4 February 2017

Loops in programming languages.

Tags
Loops are used to repeat set of codes or a single code. There are three types of......

Friday, 27 January 2017

program to add two complex number using constructor overloading in C++

Tags
Q.6 Write a program to perform addition of two complex numbers using constructor overloading.......

Saturday, 14 January 2017

program to explain class in C++ and print marks of student

Tags
Program to make a class student to print result of student. #include<iostream.h> #include<conio.h> class......

Monday, 9 January 2017

Comparison between C and C++.

Tags
C++ is super set of C language. C++ program can use existing C software libraries. C......

Saturday, 7 January 2017

Introduction and history of C++

Tags
C++ was invented by Bjarne stroustrup. It was invented in 1979. In 1979 ,it was......

multiplication of matrix in c

Tags
#include<stdio.h> #include<conio.h> void main() { int a[10][10],b[10][10],multi,r1,c1,r2,c2,i,j,k; clrscr(); printf(“enter......