Program : Multiply two matrix in C++.
#include<iostream.h>
#include<conio.h>
void......
Home
Archives for 2017
Sunday, 19 March 2017
Wednesday, 15 February 2017
program to find prime number after giving number in C++
#include<iostream>
using namespace std;
int main ()
{
int i,j,num;
cout<<"Enter......
program to show prime number in C++.
//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++
// program to swap two number without using third variable.
#include<iostream>
using......
Swap two number in Turbo C+
//swap two numbers using three variables.
#include<iostream.h>
#include<conio.h>
void......
program to check odd or even number in TurboC++
After doing this program you assure that, how to use if and else condition in......
Tuesday, 7 February 2017
Simple Multiplication table in C++
//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++.
Switch condition
switch condition is used to print multiple value as a......
Saturday, 4 February 2017
Loops in programming languages.
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++
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
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++.
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++
C++ was invented by Bjarne stroustrup.
It was invented in 1979.
In 1979 ,it was......
multiplication of matrix in c
#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......
Subscribe to:
Posts (Atom)