// putting the <(header).h>'s around here tells the computer to search for the selected files. *Borland C++ builder 6* #include //for the basic input/output controls #include //for system controls int main() // this calls the main structure of the program { char aletter; // this makes the statement aword a character string aword; int somesortofnumber; // this calls the statement somesortofnumber as an integer or number bool ihatebroccoli ; // boolean means a true or false statement somesortofnumber = 1234; aletter = 'A'; aword = 'Chicken'; ihatebroccoli = true; cout << "Hello World" << endl; // this displays the text "Hello World". endl ends the current line cout << somesortofnumber << endl; // this displays the number above cout << aword << endl; // this will display the chosen word above cout << aletter << endl; //this will display the chosen letter above return system("pause"); // this pauses the program and waits for a user response before quitting }