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 | 1623 |
| 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.
TEC 102: COMPUTERS AND MANAGEMENT OF INFORMATION IN EDUCATION
Trending!
UPDATED COMPUTERS AND MANAGEMENT OF INFORMATION IN EDUCATION
38 Pages
3833 Views
9 Downloads
624.16 KB
Solids And Surfaces
Trending!
Updated notes on SolidsAndSurfaces
42 Pages
3019 Views
0 Downloads
1.59 MB
WORKSHOP TOOLS, EQUIPMENT AND MATERIALS
Trending!
UPDATED NOTES ON WORKSHOP TOOLS, EQUIPMENT AND MATERIALS
20 Pages
3001 Views
0 Downloads
1.12 MB
Fluids and pressure
Trending!
UPDATED NOTES ON FLUIDS AND PRESSURE
19 Pages
3405 Views
1 Downloads
824.3 KB
INTRODUCTION TO ECONOMICS OF EDUCATION AND HUMAN CAPITAL THEORY
Trending!
UPDATED NOTES ON INTRODUCTION TO ECONOMICS OF EDUCATION AND HUMAN CAPITAL THEORY
37 Pages
3811 Views
1 Downloads
602.75 KB
MEASURING AND REPORTING OF INVENTORIES IAS 2
Trending!
UPDATED NOTES ON MEASURING AND REPORTING OF INVENTORIES IAS 2
31 Pages
3518 Views
0 Downloads
854.72 KB
CPA II MANAGEMENT ACCOUNTING
Trending!
UPDATED NOTES ON MANAGEMENT ACCOUNTING
668 Pages
3981 Views
1 Downloads
3.8 MB