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 | 1604 |
| 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.
ART SCHEMES OF WORK PP2 TERM2
Trending!
UPDATED ART SCHEMES OF WORK PP2 TERM2
6 Pages
4068 Views
0 Downloads
472.47 KB
PSYCHOMOTOR ACTIVITIES SCHEMES OF WORK PP2 TERM2
Trending!
UPDATED PSYCHOMOTOR ACTIVITIES SCHEMES OF WORK PP2 TERM2
4 Pages
3561 Views
0 Downloads
399.25 KB
MUSIC SCHEMES OF WORK PP2 TERM2
Trending!
UPDATED MUSIC SCHEMES OF WORK PP2 TERM2
4 Pages
3540 Views
0 Downloads
405.97 KB
CRE SCHEMES OF WORK PP1 TERM2
Trending!
UPDATED CRE SCHEMES OF WORK PP1 TERM2
3484 Views
0 Downloads
23.45 KB
PSYCHOMOTOR ACTIVIES SCHEMES OF WORK PP1 TERM1
Trending!
UPDATED PSYCHOMOTOR ACTIVIES SCHEMES OF WORK PP1 TERM1
14 Pages
3353 Views
0 Downloads
972.66 KB
PP2 Revision Questions
DAISY FLOWER KINDERGARTEN AND SCHOOL PP1 END OF TERM TWO ASSESSMENT
10 Pages
323 Views
0 Downloads
525.55 KB
PRE PRIMARY 1 TERM 3 EXAMS SET 1
Trending!
Download a full set of PRE PRIMARY 1 TERM 3 EXAMS for the evaluation of your learners.
6 Pages
4201 Views
11 Downloads
741.75 KB
PRE PRIMARY 1 TERM 3 EXAMS SET 2
Trending!
Download a full set of the PRE PRIMARY 1 TERM 3 EXAMS. its a ideal for the assessment of your learners.
6 Pages
5102 Views
0 Downloads
611.42 KB
PRE PRIMARY 1 TERM 3 EXAMS SET 3
Trending!
Download a full set of the PRE PRIMARY 1 TERM 3 EXAMS. its a great resource for the evaluation of your learners.
6 Pages
4779 Views
0 Downloads
619.1 KB