SlideShare a Scribd company logo
1 of 37
BASICS OF C++BASICS OF C++
Programming…Programming…
What is C++?
C++ (pronounced cee plus plus / si pl sˈ ː ʌ
pl s/) is a general-purpose programmingʌ
language. It has imperative, object-oriented
and generic programming features, while
also providing facilities for low-level memory
manipulation.
When was C++ Created?
Before the initial standardization in 1998, C+
+ was developed by Bjarne Stroustrup at
Bell Labs since 1979, as an extension of the
C language as he wanted an efficient and
flexible language similar to C, which also
provided high-level features for program
organization.
For What Purpose C++ is
used?
C++ is one of the most versatile languages
in the world. It is used nearly everywhere for
everything… systems programming
(operating systems, device drivers,
database engines, embedded, Internet of
Things, etc.)
What is the C++ Program?
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."
Structure of C++ Program:
The format of writing program in C++ is
called its STRUCTURE.
It consists of the following parts:
•Preprocessor directive
•Main() Function
•Program Body
Preprocessor Directive:
Preprocessor Directive is an instruction
given to the compiler before the execution of
actual program. Preprocessor directive is
also known as Compiler directive.
The preprocessor directive start with “Hash”
symbol ‘#.’
Include preprocessor :
Include preprocessor directive is used to
include header files in the program.
Syntax:
#include <iostream.h>
What are Header Files?
Header files contain definitions of Functions
and Variables, which is imported or used
into any C++ program by using the pre-
processor #include statement. Header file
have an extension ".h" which contains C++
function declaration and macro definition.
Syntax of Header files:
The syntax of header files is as follows:
#include <header_file_name>
Name of header file can also be used in
double quotes as follow:
#include “header_file_name”
Example:
#include <iostream.h>
The word “iostream” stands for input/output
stream. This header file contains the
definitions of built-in input and output
functions and objects.
main() Function:
The main() function is the starting point of a
C++ program. Each program must contain
main() function. If a program does not
contain main function, it can be compiled but
cannot be executed.
Syntax of main() function:
The syntax of main() function is as follows:
void main()
{
body of main function
}
Example:
The following example explains the basic
structure of C++ program:
#include<iostream.h> Preprocessor
void main() Main function
{
cout<<“Hello world”; Body Statement
}
What is Data Type in C++?
A Datatype actually describes you data like
what form of data you want to create (It may
be integer, character, floating point
number, string etc.) In the context of C++,
you can make many types of data that are
mentioned above.
Cont..
To make integer datatype, you type int and
then write its name (called variable name).
To create floating point datatype , you type
float and then write its variable. That is
actually a syntax of C++. (It may differ for
other languages).
Cont…
• int- integer, it is of 2 or 4 bytes dependent
on machine.
• char- character type (used to store
characters and strings), one byte.
• float- used to store floating point numbers,
4 bytes.
• double- used to store high precision
floating point numbers, 8 bytes.
Variables:
A Variable is a named memory location or
memory cell. It is used to store program`s
input data. The value of variable may
change during the execution of program.
However, the name of variable cannot be
changed.
How variables created?
The variables are created in RAM. RAM is a
temporary memory. That is why the data
stored in variables is also temporary.
The data stored in the variable is
automatically removed when program ends.
Variable Declaration:
The process of specifying the variable name
and its type is called “Variable
Declaration”.
Syntax:
data_type variable_name;
Example:
int marks;
float average;
Variable Initialization:
The process of assigning a value to a
variable at the time of declaration is known
as “Variable initialization”.
The equal sign ‘=‘ is used to initialize a
variable. Variable name is given on left side
and value is given on the right side of equal
sign.
Syntax:
The syntax of initializing a variable is as
follows:
data_type variable_name =value;
Example:
int n =100;
float a=50.73;
What are Operators?
An operator is a symbol that tells the
compiler to perform specific mathematical or
logical manipulations. C++ is rich in built-in
operators and provides the variety of
operators: Arithmetic Operators. Relational
Operators.
Cont…
The operators can be categorized as follow:
Unary Operator:
A type of operator that works with one
operand is known as unary operator.
Example:
-,++,--, -a, N++, --x
Cont…
Binary Operator:
A type of operator that works with two
operands is known as Binary Operator.
Example:
+,-,*,/,%
a + b;
x/y;
What are Arithmetic
Operator?
C++ uses operators to do arithmetic. It
provides operators for five basic arithmetic
calculations: addition, subtraction,
multiplication, division, and taking the
modulus. Each of these operators uses two
values (called operands) to calculate a final
answer
Example..
Suppose we have 2 variables A & B where
A=10 & B=5. Arithmetic operation can be
used on A & B as follows:
Operations Result
A + B 15
A - B 5
A * B 50
A / B 2
A % B 0
What is Relational operator?
• In computer science, a relational
operator is a programming language
construct or operator that tests or defines
some kind of relation between two entities.
These include numerical equality (e.g., 5 =
5) and inequalities (e.g., 4 ≥ 3).
Assignment Statement:
A statement that assigns a value to a
variable is known as “Assignment
Statement”.
Syntax:
Variable = expression;
“=” is the assignment operator.
Example:
A=100;
C=A+B;
Compound Assignment
Statement:
An assignment statement that assigns a
value to many variables is known as
“Compound Assignment” statement.
Example:
A=B=10;
x = y= z= 100;
Compound Assignment
Operator:
C++ language provides Compound
Assignment operator that combines
assignment operator with arithmetic
operators.
Syntax:
Variable op=expression;
Example:
N+=10; is equivalent to N=N+10;
Increment Operator:
The increment operator is used to increase
the value of a variable by 1. It is denoted by
the symbol “++”.
Increment operator can be used as follows:
•Prefix form
•Postfix form
Prefix & Postfix Form:
In Prefix form, the increment operator is
written before the variable as follows:
++y;
In Postfix form, the increment operator is
written after the variable as follows:
y++;
Decrement Operator:
The Decrement operator is used to
decrement the value of a variable by 1. It is
denoted by the symbol “—”.
Decrement operator can be used in two
forms:
•Prefix form
•Postfix form
Prefix & Postfix Form:
In prefix form, decrement operator is written
before the variable as follows:
--y;
In postfix form, decrement operator is
written after the variable as follows:
y--;
Basics of c++

More Related Content

What's hot

What's hot (20)

Introduction to c++ ppt
Introduction to c++ pptIntroduction to c++ ppt
Introduction to c++ ppt
 
Presentation on C++ Programming Language
Presentation on C++ Programming LanguagePresentation on C++ Programming Language
Presentation on C++ Programming Language
 
Object oriented programming c++
Object oriented programming c++Object oriented programming c++
Object oriented programming c++
 
C programming
C programmingC programming
C programming
 
Abstraction in c++ and Real Life Example of Abstraction in C++
Abstraction in c++ and Real Life Example of Abstraction in C++Abstraction in c++ and Real Life Example of Abstraction in C++
Abstraction in c++ and Real Life Example of Abstraction in C++
 
C++ How to program
C++ How to programC++ How to program
C++ How to program
 
C++ language basic
C++ language basicC++ language basic
C++ language basic
 
C functions
C functionsC functions
C functions
 
Function C++
Function C++ Function C++
Function C++
 
Variables in C++, data types in c++
Variables in C++, data types in c++Variables in C++, data types in c++
Variables in C++, data types in c++
 
C Language
C LanguageC Language
C Language
 
Control statements in c
Control statements in cControl statements in c
Control statements in c
 
Programming in C Presentation upto FILE
Programming in C Presentation upto FILEProgramming in C Presentation upto FILE
Programming in C Presentation upto FILE
 
C++ presentation
C++ presentationC++ presentation
C++ presentation
 
Library functions in c++
Library functions in c++Library functions in c++
Library functions in c++
 
Lecture 1
Lecture 1Lecture 1
Lecture 1
 
C++ Language
C++ LanguageC++ Language
C++ Language
 
Complete C programming Language Course
Complete C programming Language CourseComplete C programming Language Course
Complete C programming Language Course
 
C-Programming C LIBRARIES AND USER DEFINED LIBRARIES.pptx
C-Programming  C LIBRARIES AND USER DEFINED LIBRARIES.pptxC-Programming  C LIBRARIES AND USER DEFINED LIBRARIES.pptx
C-Programming C LIBRARIES AND USER DEFINED LIBRARIES.pptx
 
Introduction to c++ ppt 1
Introduction to c++ ppt 1Introduction to c++ ppt 1
Introduction to c++ ppt 1
 

Similar to Basics of c++

Similar to Basics of c++ (20)

IIM.Com-FIT-Unit2(14.9.2021 TO 30.9.2021).pptx
IIM.Com-FIT-Unit2(14.9.2021 TO 30.9.2021).pptxIIM.Com-FIT-Unit2(14.9.2021 TO 30.9.2021).pptx
IIM.Com-FIT-Unit2(14.9.2021 TO 30.9.2021).pptx
 
Bcsl 031 solve assignment
Bcsl 031 solve assignmentBcsl 031 solve assignment
Bcsl 031 solve assignment
 
C Programming Unit-1
C Programming Unit-1C Programming Unit-1
C Programming Unit-1
 
SRAVANByCPP
SRAVANByCPPSRAVANByCPP
SRAVANByCPP
 
C prog ppt
C prog pptC prog ppt
C prog ppt
 
C programming Training in Ambala ! Batra Computer Centre
C programming Training in Ambala ! Batra Computer CentreC programming Training in Ambala ! Batra Computer Centre
C programming Training in Ambala ! Batra Computer Centre
 
Cp week _2.
Cp week _2.Cp week _2.
Cp week _2.
 
1. introduction to computer
1. introduction to computer1. introduction to computer
1. introduction to computer
 
1. overview of c
1. overview of c1. overview of c
1. overview of c
 
C++ programming language basic to advance level
C++ programming language basic to advance levelC++ programming language basic to advance level
C++ programming language basic to advance level
 
C programming presentation(final)
C programming presentation(final)C programming presentation(final)
C programming presentation(final)
 
C Programming UNIT 1.pptx
C Programming  UNIT 1.pptxC Programming  UNIT 1.pptx
C Programming UNIT 1.pptx
 
C language ppt
C language pptC language ppt
C language ppt
 
Programming in C
Programming in CProgramming in C
Programming in C
 
Prog1-L1.pdf
Prog1-L1.pdfProg1-L1.pdf
Prog1-L1.pdf
 
C programming language Reference Note
C programming language Reference NoteC programming language Reference Note
C programming language Reference Note
 
Basic of C Programming | 2022 Updated | By Shamsul H. Ansari
Basic of C Programming | 2022 Updated | By Shamsul H. AnsariBasic of C Programming | 2022 Updated | By Shamsul H. Ansari
Basic of C Programming | 2022 Updated | By Shamsul H. Ansari
 
C programming languag for cse students
C programming languag for cse studentsC programming languag for cse students
C programming languag for cse students
 
Basic Information About C language PDF
Basic Information About C language PDFBasic Information About C language PDF
Basic Information About C language PDF
 
C programming
C programming C programming
C programming
 

More from Huba Akhtar

More from Huba Akhtar (11)

Double Linked List (Algorithm)
Double Linked List (Algorithm)Double Linked List (Algorithm)
Double Linked List (Algorithm)
 
Presentation Skills
Presentation SkillsPresentation Skills
Presentation Skills
 
Composition in OOP
Composition in OOPComposition in OOP
Composition in OOP
 
Pakistan culture
Pakistan culturePakistan culture
Pakistan culture
 
Programmable logic array
Programmable logic arrayProgrammable logic array
Programmable logic array
 
Project proposal
Project proposalProject proposal
Project proposal
 
Lahore Resolution..
Lahore Resolution..Lahore Resolution..
Lahore Resolution..
 
Islamic Civilization
Islamic CivilizationIslamic Civilization
Islamic Civilization
 
Significance and importance of studying the life of prophet (autosaved)
Significance and importance of studying the life of prophet (autosaved)Significance and importance of studying the life of prophet (autosaved)
Significance and importance of studying the life of prophet (autosaved)
 
Para-Language
Para-LanguagePara-Language
Para-Language
 
Listening-Skills Helpful Presentation
Listening-Skills Helpful PresentationListening-Skills Helpful Presentation
Listening-Skills Helpful Presentation
 

Recently uploaded

EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
Earley Information Science
 

Recently uploaded (20)

GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Evaluating the top large language models.pdf
Evaluating the top large language models.pdfEvaluating the top large language models.pdf
Evaluating the top large language models.pdf
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 

Basics of c++

  • 1. BASICS OF C++BASICS OF C++ Programming…Programming…
  • 2. What is C++? C++ (pronounced cee plus plus / si pl sˈ ː ʌ pl s/) is a general-purpose programmingʌ language. It has imperative, object-oriented and generic programming features, while also providing facilities for low-level memory manipulation.
  • 3. When was C++ Created? Before the initial standardization in 1998, C+ + was developed by Bjarne Stroustrup at Bell Labs since 1979, as an extension of the C language as he wanted an efficient and flexible language similar to C, which also provided high-level features for program organization.
  • 4. For What Purpose C++ is used? C++ is one of the most versatile languages in the world. It is used nearly everywhere for everything… systems programming (operating systems, device drivers, database engines, embedded, Internet of Things, etc.)
  • 5. What is the C++ Program? 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."
  • 6.
  • 7. Structure of C++ Program: The format of writing program in C++ is called its STRUCTURE. It consists of the following parts: •Preprocessor directive •Main() Function •Program Body
  • 8. Preprocessor Directive: Preprocessor Directive is an instruction given to the compiler before the execution of actual program. Preprocessor directive is also known as Compiler directive. The preprocessor directive start with “Hash” symbol ‘#.’
  • 9. Include preprocessor : Include preprocessor directive is used to include header files in the program. Syntax: #include <iostream.h>
  • 10. What are Header Files? Header files contain definitions of Functions and Variables, which is imported or used into any C++ program by using the pre- processor #include statement. Header file have an extension ".h" which contains C++ function declaration and macro definition.
  • 11. Syntax of Header files: The syntax of header files is as follows: #include <header_file_name> Name of header file can also be used in double quotes as follow: #include “header_file_name”
  • 12. Example: #include <iostream.h> The word “iostream” stands for input/output stream. This header file contains the definitions of built-in input and output functions and objects.
  • 13. main() Function: The main() function is the starting point of a C++ program. Each program must contain main() function. If a program does not contain main function, it can be compiled but cannot be executed.
  • 14. Syntax of main() function: The syntax of main() function is as follows: void main() { body of main function }
  • 15. Example: The following example explains the basic structure of C++ program: #include<iostream.h> Preprocessor void main() Main function { cout<<“Hello world”; Body Statement }
  • 16. What is Data Type in C++? A Datatype actually describes you data like what form of data you want to create (It may be integer, character, floating point number, string etc.) In the context of C++, you can make many types of data that are mentioned above.
  • 17. Cont.. To make integer datatype, you type int and then write its name (called variable name). To create floating point datatype , you type float and then write its variable. That is actually a syntax of C++. (It may differ for other languages).
  • 18. Cont… • int- integer, it is of 2 or 4 bytes dependent on machine. • char- character type (used to store characters and strings), one byte. • float- used to store floating point numbers, 4 bytes. • double- used to store high precision floating point numbers, 8 bytes.
  • 19. Variables: A Variable is a named memory location or memory cell. It is used to store program`s input data. The value of variable may change during the execution of program. However, the name of variable cannot be changed.
  • 20. How variables created? The variables are created in RAM. RAM is a temporary memory. That is why the data stored in variables is also temporary. The data stored in the variable is automatically removed when program ends.
  • 21. Variable Declaration: The process of specifying the variable name and its type is called “Variable Declaration”. Syntax: data_type variable_name; Example: int marks; float average;
  • 22. Variable Initialization: The process of assigning a value to a variable at the time of declaration is known as “Variable initialization”. The equal sign ‘=‘ is used to initialize a variable. Variable name is given on left side and value is given on the right side of equal sign.
  • 23. Syntax: The syntax of initializing a variable is as follows: data_type variable_name =value; Example: int n =100; float a=50.73;
  • 24. What are Operators? An operator is a symbol that tells the compiler to perform specific mathematical or logical manipulations. C++ is rich in built-in operators and provides the variety of operators: Arithmetic Operators. Relational Operators.
  • 25. Cont… The operators can be categorized as follow: Unary Operator: A type of operator that works with one operand is known as unary operator. Example: -,++,--, -a, N++, --x
  • 26. Cont… Binary Operator: A type of operator that works with two operands is known as Binary Operator. Example: +,-,*,/,% a + b; x/y;
  • 27. What are Arithmetic Operator? C++ uses operators to do arithmetic. It provides operators for five basic arithmetic calculations: addition, subtraction, multiplication, division, and taking the modulus. Each of these operators uses two values (called operands) to calculate a final answer
  • 28. Example.. Suppose we have 2 variables A & B where A=10 & B=5. Arithmetic operation can be used on A & B as follows: Operations Result A + B 15 A - B 5 A * B 50 A / B 2 A % B 0
  • 29. What is Relational operator? • In computer science, a relational operator is a programming language construct or operator that tests or defines some kind of relation between two entities. These include numerical equality (e.g., 5 = 5) and inequalities (e.g., 4 ≥ 3).
  • 30. Assignment Statement: A statement that assigns a value to a variable is known as “Assignment Statement”. Syntax: Variable = expression; “=” is the assignment operator. Example: A=100; C=A+B;
  • 31. Compound Assignment Statement: An assignment statement that assigns a value to many variables is known as “Compound Assignment” statement. Example: A=B=10; x = y= z= 100;
  • 32. Compound Assignment Operator: C++ language provides Compound Assignment operator that combines assignment operator with arithmetic operators. Syntax: Variable op=expression; Example: N+=10; is equivalent to N=N+10;
  • 33. Increment Operator: The increment operator is used to increase the value of a variable by 1. It is denoted by the symbol “++”. Increment operator can be used as follows: •Prefix form •Postfix form
  • 34. Prefix & Postfix Form: In Prefix form, the increment operator is written before the variable as follows: ++y; In Postfix form, the increment operator is written after the variable as follows: y++;
  • 35. Decrement Operator: The Decrement operator is used to decrement the value of a variable by 1. It is denoted by the symbol “—”. Decrement operator can be used in two forms: •Prefix form •Postfix form
  • 36. Prefix & Postfix Form: In prefix form, decrement operator is written before the variable as follows: --y; In postfix form, decrement operator is written after the variable as follows: y--;