Skip to main content

Turbo C++ tutorial


Turbo C++ Tutorial 

Turbo C++ is a programming language was developed by Borland.C++ was a C++ compiler and integrated development environment and computer language originally from Borland. Most recently it was distributed by Embarcadero Technologies, which acquired all of Borland's compiler tools with the purchase of its CodeGear division in 2008. The original Turbo C++ product line was put on hold after 1994 and was revived in 2006 as an introductory-level IDE, essentially a stripped-down version of their flagship C++Builder. Turbo C++ 2006 was released on September 5, 2006 and was available in 'Explorer' and 'Professional' editions. The Explorer edition was free to download and distribute while the Professional edition was a commercial product. In October 2009 Embarcadero Technologies discontinued support of its 2006 C++ editions. As such, the Explorer edition is no longer available for download and the Professional edition is no longer available for purchase from Embarcadero Technologies. Turbo C++ is succeeded by C++Builder.

 C++ Environment


// Creating a programme in C++ to print a table of any given number input given by user...

#include<iostream.h>
#include<conio.h>
void main(){
int a,b,c;
cout<<"Enter a number :";
cin>>b;
for (a=1; a<=10; a++)
{
c=a*b;
cout<<c<<"\t";
}
getch();
}


// Creating a programme in C++ that accepts
// two numbers as A and B and prints its totel

#include<iostream.h>
#include<conio.h>
void main(){
int a,b,c;
cout<<"Please Enter a value of A";
cin>>a;
cout<<"Please Enter a vlaue of B";
cin>>b;
c=a+b;
cout<<"The Sum is: "<<c;
getch();
}


// Creating a programme that prints numbers
// from 1 to 100

#include<iostream.h>
#include<conio.h>
void main(){
int a;
clrscr();
gotoxy(14,15);
for(a=1; a<=100; a++){
cout<<a<<"\t";
}
getch();
}


Download Resume
Download Turbo C++ New Auto Installtion Version 3.2
Download WinRAR
Download Fonts Collection
Download UMK3 Trilogy
Download Photoshop 6
Download Typing soft
Download CD Burn Software
Download Deep Freeze 7 
Download Anti Freez
Download FindUrDriver
Download QSR
Download File Factory 2.0
Download Shockweav Convet
Download PISO
Download UISO
Download Acrobat 6
Download Accounting Soft
Download CSS Effects File 
Download CSS 2 Effects File 
Download Animation_Scroll_Script_
Animation Scroll ASP.NET View Script & HTML
Animation  On Scroll (AOP)_ ASP.NET__How to add animations Tutorials 
Animation  On Scroll (AOP)_ ASP.NET__How to add animations_files download




Comments

Popular posts from this blog

Ganna Gyaras

Ganna Gyaras or called Dev uthavni Aikadashi.... It is also called Prabodhini  Aikadashi. It is belived that after killing the demon called Shankhasur The Great Lord Vishnu went for long sleep... which began after June month...... After diwali's 11th day the Ganna Gyaras is celebrated..... and all the auspicious tasks such as Weddings, New buyings etc. are done.  It is also called that... the end of Chaturmas.... Cool fact... Isn't it..?? Please make comments...... Thank you.

Fino Bank Asp.net C# Desktop Application

    using  System; using  System.Collections.Generic; using  System.ComponentModel; using  System.Data; using  System.Drawing; using  System.Linq; using  System.Text; using  System.Threading.Tasks; using  System.Windows.Forms; namespace  FinoBank_Application {      public   partial   class   frmSplash  :  Form     {          public  frmSplash()         {             InitializeComponent();         }          private   void  frmSplash_Load( object  sender,  EventArgs  e)         {             timer1.Start();         }          private   void  timer1_Tick( object  sender,  EventArgs  e)         {             progressBar1.Minimum = 0;             progressBar1.Maximum = 100;             progressBar1.Value = progressBar1.Value + 1;              //this.progressBar1.Increment(1);              if  (progressBar1.Value <= 0)             {                 lblProgress.Text =  "Initializing components............... " ;             }              else   if  (progressBar1.Va