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......