Вы находитесь на странице: 1из 6

JOB SHEET PROGRAMMING C++

1. Open programming C++

2. Select new source file

3. Write this program.


/* This is a program that computers the sum of two integer number */
#include<iostream.h>
Main()
{
Int X , Y , sum ;
Cout<<\nEnter first number:;
Cin>> X;
Cout<<\nEnter second number:;
Cin>> Y;
Sum = X+Y;
COUT<<\nsum=<<sum;
Return 0;

4. Run the project

5. Save the file under project 1

6. Compilation completed

7. Execute the program

8. Insert the data

9. Result

Question
1. How to
a. Compilation process .

b. Execute the program .

2. What is C++ programming.

C++ is an object oriented programming (OOP) language, developed by Bjarne Stroustrup, and is
an extension of C language. It is therefore possible to code C++ in a "C style" or "object-oriented
style." In certain scenarios, it can be coded in either way and is thus an effective example of a
hybrid language.
C++ is a general purpose object oriented programming language. It is considered to be an
intermediate level language, as it encapsulates both high and low level language features.
Initially, the language was called 'C with classes as it had all properties of C language with an
additional concept of 'classes. However, it was renamed to C++ in 1983.
It is pronounced "C-Plus-Plus."

CONCLUSION :I learn and study how to made the program use c++ programming

Вам также может понравиться