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 | 2886 |
| 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.
BIT 2103: Lesson 6 Mail Merge
Trending!
The Mail Merge feature of Microsoft Word is a great way to produce a large number of
personalized letters or labels in a short amount of time. The process can seem daunting to a
beginner, but if you break it down into a series of steps, is very easy to manage.
6 Pages
5360 Views
0 Downloads
177.16 KB
INTRODUCTION TO THE LAW OF TORTS
Trending!
Human interactions in the social sphere is bound to create conflicts of interest leading to injury or losses to other people – road use; use of buildings; seeking professional help, sports etc. When these injuries occur, society should have a mechanism of apportioning blame and ensuring reparations. The law of tort is one such mechanism that has been developed by society to apportion responsibility for losses that occur in society.
78 Pages
4835 Views
1 Downloads
1.02 MB
BIT 2103: Lesson 3 Basic tasks in Word.
Trending!
The backstage view helps for creating new documents, saving and opening documents etc.
49 Pages
4665 Views
0 Downloads
2.8 MB
BIT 2103: Lesson 2 Word Processing.
Trending!
A word processor is a program designed for creating and editing
business and personal documents that are primarily text-based.
Most modern word processors enable you to customize fonts and
formatting - and they often include images and other multimedia
files - such as videos and audio clips.
9 Pages
5452 Views
0 Downloads
215.29 KB
BIT 2103: What is HTML
Trending!
HTML represents the standard markup language for creating web pages online.
It stands for Hyper Text Markup Language.
5 Pages
4656 Views
0 Downloads
97.48 KB
BIT 2103: Lesson 4 Ms Excel
Trending!
This tip describes how to use conditional formatting for comfortable viewing results in the
worksheet.
14 Pages
4449 Views
0 Downloads
303.23 KB
BIT 2103: Lesson 3 Ms Excel
Trending!
If you create a custom list in Excel, you can easily fill a range with your own list of
departments, clients, cities, credit card numbers, etc. This can save time and reduce errors
3 Pages
4834 Views
0 Downloads
81.88 KB
BIT 2103: Lesson 2 Ms Excel
Trending!
The ribbon provides shortcuts to commands in Excel. A command is an action that the user
performs. An example of a command is creating a new document, printing a documenting, etc.
13 Pages
5632 Views
0 Downloads
533.77 KB