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 | 1533 |
| 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.
THE PEARL ANALYSIS -THEMES (Sample Essays Questions with Answers)
Trending!
This articles covers themes in The Pearl with Sample Essays Questions with Answers.
3987 Views
1 Downloads
139.15 KB
BEC 3150: PRINCIPLES OF MACROECONOMICS
Trending!
UPDATED NOTES ON PRINCIPLES OF MACROECONOMICS
15 Pages
5505 Views
0 Downloads
391.37 KB
BBM 124: PRINCIPLES OF MARKETING
UPDATED NOTES ON PRINCIPLES OF MARKETING
60 Pages
603 Views
0 Downloads
324.01 KB
ARE 401: CHRISTIAN RESPONSE TO CONTEMPORARY ISSUES
Trending!
UPDATED NOTES ON CHRISTIAN RESPONSE TO CONTEMPORARY ISSUES
4602 Views
2 Downloads
44.98 KB
SPH202: Modern Physics
Trending!
Updated notes on modern Physics
97 Pages
4432 Views
0 Downloads
7.24 MB
NURS 133: INTRODUTION TO PSYCHOLOGY
UPDATED NOTES ON INTRODUTION TO PSYCHOLOGY
76 Pages
449 Views
0 Downloads
6.25 MB
INTERMEDIATE MICROECONOMICS
UPDATED NOTES ON INTERMEDIATE MICROECONOMICS
73 Pages
1113 Views
3 Downloads
1.54 MB
ISC403: PRACTICAL CLASSIFICATION
Trending!
UPDATED NOTES ON PRACTICAL CLASSIFICATION
2897 Views
0 Downloads
3.11 MB
ISC402: PRACTICAL CATALOGUING
Trending!
UPDATED NOTES ON PRACTICAL CATALOGUING
40 Pages
3408 Views
2 Downloads
531.43 KB