Presentation CSE
Presentation CSE
presentation
•••••
About
Topic: Data Types in C Programming
Course: Structured Programming
Submitted To:
MR. Humayan Kabir Rana
Senior Lecturer
Dept.of CSE
Submitted By:
Abdullah Al Mamun
ID: 212002129
Contents
Data Types
In C Programming
Data Types
Types of Data Types
Primary Data Types
Declaration of Primary Data
Types with Variable Names
Derived Data Types
User Defined Data Types
Variable Declartion in C
• Set of values.
• Determined to act on those values.
• Collection of data with values
having fixed meaning as well as
characteristics.
Data Type
Types of Data Types
• Integer Data Types: Integers are whole numbers with a range of
values
• Float Data Types: Used to store fractional numbers with 6 digits
of precision.
• Character Data Types: variable can hold a single character and
are declared by using the keyword char.
• Void Data Types: Used to indicate noting or null.
• Example:
Variable Declartion in C