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 1528
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
test
test
2 Pages 759 Views 1 Downloads 3.98 MB
CHEMISTRY SYLLABUS Trending!
UPDATED KNEC CHEMISTRY SYLLABUS
25 Pages 3788 Views 2 Downloads 1.15 MB
tester
t
260 Views 0 Downloads 554.53 KB
KENYA SIGN LANGUAGE SYLLABUS Trending!
UPDATED KNEC KENYA SIGN LANGUAGE SYLLABUS
7 Pages 5261 Views 11 Downloads 808.57 KB
BUSINESS STUDIES SYLLABUS Trending!
UPDATED KNEC BUSINESS STUDIES SYLLABUS
16 Pages 4199 Views 0 Downloads 2.3 MB
AGRICULTURE SYLLABUS Trending!
UPDATED KNEC AGRICULTURE SYLLABUS
23 Pages 4380 Views 1 Downloads 2.21 MB
I.R.E FORM1 NOTES Trending!
UPDATED FORM 1 I.R.E NOTES
155 Pages 3333 Views 0 Downloads 3.06 MB
I.R.E FORM2 NOTES Trending!
UPDATED I.R.E FORM 2 NOTES
320 Pages 3312 Views 0 Downloads 1.87 MB
I.R.E FORM3 NOTES Trending!
UPDATED I.R.E FORM3 NOTES
389 Pages 3436 Views 0 Downloads 3.01 MB
I.R.E FORM4 NOTES Trending!
UPDATED I.R.E FORM 4 NOTES
404 Pages 2791 Views 0 Downloads 2.45 MB