INTRODUCTION TO C++ PROGRAMMING YEAR 1
| Institution | UNIVERSITY |
| Course | BACHELOR OF SCIENCE... |
| Year | 1st Year |
| Semester | Unknown |
| Posted By | stephen oyake rabilo |
| File Type | |
| Pages | 33 Pages |
| File Size | 207.62 KB |
| Views | 1596 |
| Downloads | 0 |
| Price: |
Buy Now
|
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.
LANGUAGES ACTIVITIES SCHEMES OF WORK PP1 TERM3
Trending!
UPDATED LANGUAGES ACTIVITIES SCHEMES OF WORK PP1 TERM3
21 Pages
3868 Views
0 Downloads
953.6 KB
MATHEMATICS SCHEMES OF WORK PP1 TERM3
Trending!
UPDATED MATHEMATICS SCHEMES OF WORK PP1 TERM3
21 Pages
4764 Views
0 Downloads
890.87 KB
MUSIC SCHEMES OF WORK PP1 TERM3
Trending!
UPDATED MUSIC SCHEMES OF WORK PP1 TERM3
9 Pages
3075 Views
0 Downloads
799.66 KB
PSYCHOMOTOR ACTIVITIES SCHEMES OF WORK PP1 TERM3
Trending!
UPDATED PSYCHOMOTOR ACTIVITIES SCHEMES OF WORK PP1 TERM3
9 Pages
3525 Views
0 Downloads
796.39 KB
ART SCHEMES OF WORK PP2 TERM3
Trending!
UPDATED ART SCHEMES OF WORK PP2 TERM3
12 Pages
3442 Views
0 Downloads
835.17 KB
CRE SCHEMES OF WORK PP2 TERM3
Trending!
UPDATED CRE SCHEMES OF WORK PP2 TERM3
9 Pages
3411 Views
0 Downloads
896.84 KB
ENVIRONMENTAL ACIVITIES SCHEMES OF WORK PP2 TERM3
Trending!
UPDATED ENVIRONMENTAL ACTIVITIES SCHEMES OF WORK PP2 TERM3
18 Pages
3616 Views
0 Downloads
887.41 KB
LANGUAGES ACTIVITIES SCHEMES OF WORK PP2 TERM3
Trending!
UPDATED LANGUAGES ACTIVITIES SCHEMES OF WORK PP2 TERM3
21 Pages
3969 Views
0 Downloads
956.16 KB
MATHEMATICS SCHEMES OF WORK PP2 TERM3
Trending!
UPDATED MATHEMATICS SCHEMES OF WORK PP2 TERM3
21 Pages
4391 Views
0 Downloads
956.28 KB
MUSIC SCHEMES OF WORK PP2 TERM3
Trending!
UPDATED MUSIC SCHEMES OF WORK PP2 TERM3
9 Pages
3713 Views
0 Downloads
829.98 KB