Saturday, June 9, 2012

C++ For Beginner - Creating Your First C++ Program

1. On your Task Bar click START, then choose Program, Turbo C++ 4.5, click Turbo C++


























 2. On your work-area type the following commands:
#include<iostream.h>
 int main ()
{
    cout<<"Welcome Turbo C++";
    return 0;
}
























 3. Preparing to save your program.
     a. To save your program, on your Menu Bar Click File | Save.
     b. Type firstprogram.cpp as your filename.
     c. Then Click Save.






Friday, June 8, 2012

C++ For Beginner - Parts of the Screen

The Parts of the Screen

Turbo C++ Download Here



























OVERVIEW OF THE MENU BAR




FILE
File related commands that operate on your program file, such as loading a program from disk, saving a program you entered to disk, and printing the program.

EDIT
Includes options that aid in adding, changing, searching for, and deleting text from the current program.

VIEW
Options for moving around the editor and controlling the display

PROJECT
Includes the building command, which runs the compiler and linker and the executable command, which enables you to test your program without leaving the workbench.

BROWSE
Used for examining C++ classes.

DEBUG
This pull-down menu includes the command that enable you to examine the codes as if runs to help you get errors out of your program.

TOOL
Special features that can be added to the workbench

OPTIONS
Setting up the workbench to better suit the way a program works.

WINDOWS
Standard windows menu for selecting and arranging windowss.

HELP