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 | 1575 |
| 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.
KCSE KISWAHILI FORM 2 NOTES
Trending!
UPDATED KCSE KISWAHILI FORM 2 NOTES
23 Pages
3726 Views
0 Downloads
473.33 KB
KCSE KISWAHILI FORM 4 NOTES
Trending!
UPDATED KCSE KISWAHILI FORM 4 NOTES
45 Pages
3426 Views
0 Downloads
539.44 KB
KCSE KISWAHILI FORM 1-4 NOTES
Trending!
UPDATED KCSE KISWAHILI FORM 1-4 NOTES
485 Pages
4894 Views
7 Downloads
2.37 MB
HOW TO START A BARBERSHOP BUSINESS IN KENYA
Trending!
A Market Survey of the Executive Barber Shop Business.
36 Pages
2915 Views
0 Downloads
1018.19 KB
HOW TO START AN MPESA BUSINESS IN KENYA
Trending!
A Report on the M-Pesa Sub Agent Business
18 Pages
2808 Views
0 Downloads
879.8 KB
HOW TO START A CYBER CAFE BUSINESS IN KENYA
Trending!
A (Market) Survey of the Cyber Café Business
13 Pages
2828 Views
1 Downloads
789.58 KB
HOW TO START A MOVIE SHOP BUSINESS IN KENYA
Trending!
A Survey of the Movie Shop Business
29 Pages
2828 Views
0 Downloads
1.01 MB
HOW TO START A BOTTLED WATER BUSINESS IN KENYA
Trending!
A Step by Step Guide to Starting a Bottled Water Business.
66 Pages
3242 Views
0 Downloads
1.44 MB