-Duddukuru vinay teja
-227R1A7382
-AIM-B
-DATA TYPES IN “C”
DEFINITION :-
Data types specify what type of data we enter and
how the enter data stored into our programs..
 Data type is the type of the data that are going to
data associated with variables
 primary data types :-
ex:- Char, Int, Float, Double & Void
 DERIVED DATA TYPES:-
ex:- Array, Pointer, Function, String…
 User defined data types:-
ex:- Using Typedef Keyword
 Primary Data Type Are Those Are Already Defined In Programming
Languages Also Known In-built Data Type…
TYPE SIZE(BYTES) FORMAT
SPECIFIES
char 1 %c
int at least2,
usually 4
%d
float 54 %f
double 8 %if
void - -
 Using Primitive Data Types We Are Derived Another Data
Type Is Derived Data Type
 Derived Data Types To Add Some Functionality To The
Basic Data Types As Per Program Requirement
 Derived Data Types Are Formed By A Grouping Of Two Or
More Primary Types
1. Pointers
2.Arrays
3.Union
4.Structures
 Data Type That Derived From An Existing Data Type Is
Called User-defined Data Type(UDT)…
 We Can Create Own(customized) Data Type Using Primary
Data Type.
 Typedef Keyword :-
Using typedef keyword we can create own data type
SYNTAX :-typedef basicDT newDT;
ppt on data types
ppt on data types
ppt on data types
ppt on data types

ppt on data types

  • 1.
  • 2.
    DEFINITION :- Data typesspecify what type of data we enter and how the enter data stored into our programs..  Data type is the type of the data that are going to data associated with variables
  • 3.
     primary datatypes :- ex:- Char, Int, Float, Double & Void  DERIVED DATA TYPES:- ex:- Array, Pointer, Function, String…  User defined data types:- ex:- Using Typedef Keyword
  • 4.
     Primary DataType Are Those Are Already Defined In Programming Languages Also Known In-built Data Type… TYPE SIZE(BYTES) FORMAT SPECIFIES char 1 %c int at least2, usually 4 %d float 54 %f double 8 %if void - -
  • 5.
     Using PrimitiveData Types We Are Derived Another Data Type Is Derived Data Type  Derived Data Types To Add Some Functionality To The Basic Data Types As Per Program Requirement  Derived Data Types Are Formed By A Grouping Of Two Or More Primary Types 1. Pointers 2.Arrays 3.Union 4.Structures
  • 6.
     Data TypeThat Derived From An Existing Data Type Is Called User-defined Data Type(UDT)…  We Can Create Own(customized) Data Type Using Primary Data Type.  Typedef Keyword :- Using typedef keyword we can create own data type SYNTAX :-typedef basicDT newDT;