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 1571
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
KCSE FORM 4 CHEMISTRY NOTES
UPDATED KCSE FORM4 CHEMISTRY NOTES
334 Pages 1728 Views 1 Downloads 4.44 MB
FORM1 BIOLOGY NOTES Trending!
UPDATED FORM1 BIOLOGY NOTES
53 Pages 3401 Views 1 Downloads 1.37 MB
FORM2 BIOLOGY NOTES Trending!
UPDATED FORM2 BIOLOGY NOTES
54 Pages 3325 Views 5 Downloads 868.58 KB
FORM3 BIOLOGY NOTES Trending!
UPDATED FORM3 BIOLOGY NOTES
82 Pages 4038 Views 2 Downloads 2.74 MB
FORM4 BIOLOGY NOTES Trending!
UPDATED FORM4 BIOLOGY NOTES
62 Pages 3327 Views 0 Downloads 1.09 MB
PHYSICS FORM1 NOTES Trending!
UPDATED PHYSICS FORM1 NOTES
47 Pages 3855 Views 0 Downloads 1.9 MB
PHYSICS FORM2 NOTES Trending!
UPDATED PHYSICS FORM2 NOTES
38 Pages 4247 Views 1 Downloads 2.54 MB
PHYSICS FORM3 NOTES Trending!
UPDATED PHYSICS FORM3 NOTES
50 Pages 3724 Views 0 Downloads 2.25 MB
PHYSICS FORM4 NOTES Trending!
UPDATED PHYSICS FORM4 NOTES
59 Pages 3646 Views 1 Downloads 2.34 MB
KCSE KISWAHILI FORM 1 NOTES Trending!
UPDATED KCSE KISWAHILI FORM 1 NOTES
23 Pages 3363 Views 3 Downloads 411.07 KB