Posts

Showing posts from 2017

turbo c++ 3.2

Image
TURBO C++ c++ tutorial for beginner,s easy to understand pdf after read this book you will be able to make simple/complex programs click here to download http://pintient.com/8ID later on if you are interested in c++ programming   I will help you weather you want to  program for simple calculator Atm machine program small games etc... I will be their for your help... first c++ program TURBO c++ for windows 7/8/8.1/10 64/32 bit turbo  C++  is one of the best compiler for all windows version... C++ is a high level language easy to understand it by the users... use for many purposese in daily overcome challenges.. so if you want to be a good software maker you should know about c/c++ language..

design a simple program to calculate arithematic function

#include <iostream> #include <cmath> #include <ccomplex> #include <complex>void calculate(); namespace pi{     doubleconst pi = 3.1415926535897932384626433832795;  } namespace e{ doubleconst e = 2.718; } usingnamespace std; int main(){     char options;     char choose;     double num1,num2;     double sum = 0; begin:     cout << "Welcome to my calculator" << endl << "To calculate press C for help H and to exit E." << endl;     cin >> options;     if (options = 67){      do     { calc:         cout << "Enter a x value" << flush;         cin >> num1;         cout << "Enter a y value" << flush;   ...

program to show difference b/w while and do while

while #include<conio.h> #include<iostream.h> void main() { int a=10; clrscr(); while(a<=9) { cout<<"\n"<<a; a++; } getch(); } do while #include<conio.h> #include<iostream.h> void main() { int a=10; clrscr(); do { cout<<"\n"<<a; a++; } while(a<=9); getch(); }

prgram about odd numbers 1-99

#include<conio.h> #include<iostream.h> void main() { int a; clrscr(); for(a=1;a<=99;a=a+2) cout<<"\n"<<a; getch(); } or #include<conio.h> #include<iostream.h> void main() { int a; clrscr(); for(a=0;a<=100;a++) if(a%2==0) cout<<"\n"<<a; getch(); }

program about do while loop

start... #include<conio.h> #include<iostream.h> void main() { int a=1; clrscr(); do { cout<<"\n"<<a; a++; } while(a<=10); getch(); }

program about while loop

#include<conio.h> #include<iostream.h> void main() { int a=1; clrscr(); while(a<=10) { cout<<"\n"<<a; a++; } getch(); }

program about for loop

program to execute 1-10 in decending order start.... #include<conio.h> #include<iostream.h> void main() { int a; clrscr(); for(a=10;a>=1;a--) cout<<"\n"<<a; getch(); }

program about for loop

program to display 1-10 numbers in asending order. start... #include<conio.h> #include<iostream.h> void main() { int a; clrscr(); for(a=1;a<=10;a++) cout<<"\n"<<a; getch(); }
Image
TURBO C++ c++ tutorial for beginner,s easy to understand pdf after read this book you will be able to make simple/complex programs click here to download http://pintient.com/8ID later on if you are interested in c++ programming   I will help you weather you want to  program for simple calculator Atm machine program small games etc... I will be their for your help... first c++ program TURBO c++ for windows 7/8/8.1/10 64/32 bit turbo  C++  is one of the best compiler for all windows version... C++ is a high level language easy to understand it by the users... use for many purposese in daily overcome challenges.. so if you want to be a good software maker you should know about c/c++ language..