You are on page 1of 19

PROGRAMMING

LANGUAGE
C
Submitted by :-
Gaurav kumar dwivedi
Submitted to :-
Ms Manisha paliwal
CONTENT
Introduction​ to c
Data types
operaters
loops
​function​
Presentation title 3

INTRODUCTION
What is C?
• C is a general-purpose programming language created by Dennis
Ritchie at the Bell Laboratories in 1972.
• It is a very popular language, despite being old. The main reason
for its popularity is because it is a fundamental language in the
field of computer science.
• C is strongly associated with UNIX, as it was developed to write
the UNIX operating system
Presentation title 5
Presentation title 6
Presentation title 7

SYNTAX
Presentation title 8
Presentation title 9
Presentation title 10
Presentation title 11
Presentation title 12
Presentation title 13
Presentation title 14

ARITHMETIC OPERATORS
Presentation title 15

CONDITIONAL OPERATORS
Presentation title 16
Presentation title 17
Presentation title 18

FUNCTIONS
A function is a block of code which only runs when it is
called.
You can pass data, known as parameters, into a function.
Functions are used to perform certain actions, and they
are important for reusing code: Define the code once and
use it many times.

void myFunction() {
// code to be executed
}
THANK YOU

You might also like