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 | 1627 |
| 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.
BMS 201: Computer Programming
Trending!
Updated notes on computer programming
4024 Views
0 Downloads
198.25 KB
BAC 203: BUSINESS FINANCE 1
Trending!
This course has been designed to act as a catalytic agent among commerce students as a pre – requirement to meeting and coping with the present and future challenges in the
over dynamic world of Finance and Banking
2968 Views
0 Downloads
184.71 KB
Permutations combinations and probability
Trending!
Updated notes on Permutations combinations and probability
20 Pages
4237 Views
0 Downloads
8.36 MB
CSC 225: APPLICATION LAYER
Trending!
Updated notes on application layer
29 Pages
3136 Views
0 Downloads
1.34 MB
ARE265: RELIGION AND HUMAN DEVELOPMENT
Trending!
UPDATED NOTES ON RELIGION AND HUMAN DEVELOPMENT
139 Pages
3346 Views
0 Downloads
1.13 MB
ARE352: NEW TESTAMENT HERMENEUTICS
Trending!
UPDATED NOTES ON NEW TESTAMENT HERMENEUTICS
53 Pages
4306 Views
0 Downloads
993.54 KB
EFN 204: SOCIOLOGY OF EDUCATION
UPDATED NOTES ON SOCIOLOGY OF EDUCATION
151 Pages
765 Views
0 Downloads
2.05 MB
HTS202: PRINCIPLES OF CLOTHING CONSTRUCTION
Trending!
UPDATED NOTES ON PRINCIPLES OF CLOTHING CONSTRUCTION
110 Pages
3386 Views
1 Downloads
605.52 KB
Medical Microbiology
UPDATED NOTES ON MEDICAL MICROBIOLOGY
16 Pages
1228 Views
0 Downloads
621.16 KB