INTRODUCTION TO C++ PROGRAMMING YEAR 1

Institution UNIVERSITY
Course BACHELOR OF SCIENCE...
Year 1st Year
Semester Unknown
Posted By stephen oyake rabilo
File Type pdf
Pages 33 Pages
File Size 207.62 KB
Views 1536
Downloads 0
Price: Buy Now whatsapp Buy via whatsapp
  • whatsapp
  • facebook
  • twitter

Description

First Class In C++ Adapted from : http://www.cplusplus.com/doc/tutorial/tut1-1.html Structure of a C++ program Probably the best way to start learning a programming language is with a program. So here is our first program: // my first program in C++ #include <iostream.h> int main () { cout << "Hello World!"; return 0; } Hello World! The left side shows the source code for our first program, which we can name, for example, hiworld.cpp. The right side shows the result of the program once compiled and executed. The way to edit and compile a program depends on the compiler you are using. Depending on whether it has a Development Interface or not and on its version. Consult section compilers and the manual or help included with your compiler if you have doubts on how to compile a C++ console program. The previous program is the first program that most programming apprentices write, and its result is the printing on screen of the "Hello World!" sentence. It is one of the simpler programs that can be written in C++, but it already includes the basic components that every C++ program has. We are going to take a look at them one by one:
Below is the document preview.

No preview available
HOMESCIENCE FORM 2 NOTES Trending!
UPDATED HOMESCIENCE FORM 2 NOTES
45 Pages 3841 Views 1 Downloads 854.13 KB
HOMESCIENCE FORM 3 NOTES Trending!
UPDATED HOMESCIENCE FORM3 NOTES
93 Pages 3243 Views 0 Downloads 972.83 KB
HOMESCIENCE FORM 4 NOTES Trending!
UPDATED HOMESCIENCE FORM 4 NOTES
72 Pages 3412 Views 3 Downloads 915.65 KB
HISTORY NOTES FORM 1-4
UPDATED HISTORY NOTES FORM 1-4
503 Pages 1240 Views 4 Downloads 3.75 MB
MATHEMATICS FORM 1 NOTES Trending!
UPDATED MATHEMATICS FORM1 NOTES
563 Pages 4004 Views 2 Downloads 3.12 MB
MATHEMATICS FORM 2 NOTES Trending!
UPDATED MATHEMATICS FORM 2 NOTES
146 Pages 3784 Views 5 Downloads 4.45 MB
MATHEMATICS FORM 3 NOTES Trending!
UPDATED MATHEMATICS NOTES FORM 3
203 Pages 4921 Views 1 Downloads 6.08 MB
MATHEMATICS FORM 4 NOTES Trending!
UPDATED MATHEMATICS NOTES FORM 4
126 Pages 4023 Views 3 Downloads 3.43 MB
A GUIDE TO A DOLLS HOUSE Trending!
UPDATED GUIDE TO A DOLLS HOUSE
242 Pages 3152 Views 0 Downloads 1.1 MB
BLOSSOMS OF SAVANNAH GUIDE Trending!
UPDATED BLOSSOMS OF SAVANNAH GUIDE
101 Pages 3312 Views 0 Downloads 1.13 MB