SlideShare a Scribd company logo
C – Language History
 C language is a structure oriented programming language, was developed
at Bell Laboratories in 1972 by Dennis Ritchie
 C language features were derived from earlier language called “B” (Basic
CombinedProgramming Language – BCPL)
 C language was invented for implementing UNIX operating system
 In 1978, Dennis Ritchie and Brian Kernighan published the first edition
“The C Programming Language” and commonly known as K&R C
 In 1983, the American National Standards Institute (ANSI) established a
committee to provide a modern, comprehensive definition of C. The
resulting definition, the ANSI standard, or “ANSI C”, was completed late
1988.
 Operating systems, C compiler and all UNIX application programs are
written in C language
 It is also called as procedure oriented programming language
 C language is reliable, simple and easy to use.
 C has been coded in assembly language
Uses of C language:
C language is used for developing system applications that forms major
portion of operating systems such as Windows, UNIX and Linux. Below
are some examples of C being used?
 Database systems
 Graphics packages
Word processors
 Operating system development
 Compilers and Assemblers
 Network drivers
 Interpreters
Which level the C language is belonging to?
S.no High Level Middle Level Low Level
1
High level
languages
provides almost
Middle level
languages don’t
provide all the
Low level
languages
provides
everything that
the programmer
might need to
do as already
built into the
language
built-in functions
found in high
level languages,
but provides all
building blocks
that we need to
produce the
result we want
nothing other
than access
to the
machines
basic
instruction
set
2
Examples:
Java, Python
C, C++ Assembler
C language is a structured language
S.no
Structure
oriented
Object oriented Non structure
1
In this type of
language, large
programs are
divided into
small programs
called functions
In this type of
language,
programs are
divided into
objects
There is no
specific
structure for
programming
this language
2
Prime focus is
on functions
and procedures
that operate on
data
Prime focus is
on the data
that is being
operated and
not on the
functions or
procedures
N/A
3
Data moves
freely around
the systems
from one
function to
another
Data is hidden
and cannot be
accessed by
external
functions
N/A
4
Program
structure
follows “Top
Down
Approach”
Program
structure
follows “Bottom
UP Approach”
N/A
5
Examples:
C, Pascal,
ALGOL and
Modula-2
C++, JAVA and
C# (C sharp)
BASIC, COBOL,
FORTRAN
Key points to remember:
1. C language is structured, middle level programming language developed
by Dennis Ritchie
2. Operating system programs such as Windows, Unix, Linux are written by
C language
3. C89/C90 and C99 are two standardized editions of C language
4. C has been written in assembly language
C – printf and scanf
 printf() and scanf() functions are inbuilt library functions in C which are
available in C library by default. These functions are declared and related
macros are defined in “stdio.h” which is a header file.
 We have to include “stdio.h” file as shown in below C program to make
use of these printf() and scanf() library functions.
1. C printf() function:
 printf() function is used to print the “character, string, float, integer,
octal and hexadecimal values” onto the output screen.
 We use printf() function with %d format specifier to display the value
of an integer variable.
 Similarly %c is used to display character, %f for float variable, %s for
string variable, %lf for double and %x for hexadecimal variable.
 To generate a newline,we use “n” in C printf() statement.
Note:
 C language is case sensitive. For example, printf() and scanf() are
different from Printf() and Scanf(). All characters in printf() and
scanf() functions must be in lower case.
#include <stdio.h>
int main()
{
char ch = 'A';
char str[20] = "NIIT.com";
float flt = 10.234;
int no = 150;
double dbl = 20.123456;
printf("Character is %c n", ch);
printf("String is %s n" , str);
printf("Float value is %f n", flt);
printf("Integer value is %dn" , no);
printf("Double value is %lf n", dbl);
printf("Octal value is %o n", no);
printf("Hexadecimal value is %x n", no);
return 0;
}
Output:
Character is A
String is NIIT.COM
Float value is 10.234000
Integer value is 150
Double value is 20.123456
Octal value is 226
Hexadecimal value is 96
You can see the output with the same data which are placed within the
double quotes of printf statement in the program except
 %d got replaced by value of an integer variable (no),
 %c got replaced by value of a character variable (ch),
 %f got replaced by value of a float variable (flt),
 %lf got replaced by value of a double variable (dbl),
 %s got replaced by value of a string variable (str),
 %o got replaced by a octal value corresponding to integer variable
(no),
 %x got replaced by a hexadecimal value corresponding to integer
variable
 n got replaced by a newline.
2. C scanf() function:
 scanf() function is used to read character, string, numeric data from
keyboard
 Consider below example program where user enters a character. This
value is assigned to the variable “ch” and then displayed.
 Then, user enters a string and this value is assigned to the
variable”str” and then displayed.
Example program for printf() and scanf() functions in C:
#include <stdio.h>
int main()
{
char ch;
char str[100];
printf("Enter any character n");
scanf("%c", &ch);
printf("Entered character is %c n", ch);
printf("Enter any string ( upto 100 character ) n");
scanf("%s", &str);
printf("Entered string is %s n", str);
}
Output:

 The format specifier %d is used in scanf () statement. So that, the
value entered is received as an integer and %s for string.
 Ampersand is used before variable name “ch” in scanf () statement as
&ch.
 It is just like in a pointer which is used to point to the variable. For
more information about how pointer works
C – Data Types
 C data types are defined as the data storage format that a variable can
store a data to perform a specific operation.
 Data types are used to define a variable before to use in a program.
 Size of variable, constant and array are determined by data types.
C – data types:
There are four data types in C language. They are,
S.no Types Data Types
1 Basic data types int, char, float, double
2
Enumeration data
type
enum
3 Derived data type
pointer, array, structure,
union
4 Void data type void
Enter any character
a
Entered character is a
Enter any string ( upto 100 character )
hai
Entered string is hai
1. Basic data types in C:
1.1. Integer data type:
 Integer data type allows a variable to store numeric values.
 “int” keyword is used to refer integer data type.
 The storage size of int data type is 2 or 4 or 8 byte.
 It varies depend upon the processor in the CPU that we use. If we are
using 16 bit processor, 2 byte (16 bit) of memory will be allocated for int
data type.
 Like wise, 4 byte (32 bit) of memory for 32 bit processor and 8 byte (64
bit) of memory for 64 bit processor is allocated for int datatype.
 int (2 byte) can store values from -32,768 to +32,767
 int (4 byte) can store values from -2,147,483,648 to +2,147,483,647.
 If you want to use the integer value that crosses the above limit, you can
go for “long int” and “long long int” for which the limits are very high.
Note:
 We can’t store decimal values using int data type.
 If we use int data type to store decimal values, decimal values will be
truncated and we will get only whole number.
 In this case, float data type can be used to store decimal values in a
variable.
1.2. Character data type:
 Character data type allows a variable to store only one character.
 Storage size of character data type is 1. We can store only one character
using character data type.
 “char” keyword is used to refer character data type.
 For example, ‘A’ can be stored using char datatype. You can’t store more
than one character using char data type.
 Please refer C – Strings topic to know how to store more than one
characters in a variable.
1.3. Floating point data type:
Floating point data type consists of 2 types. They are,
1. float
2. double
1. float:
 Float data type allows a variable to store decimal values.
 Storage size of float data type is 4. This also varies depend upon the
processor in the CPU as “int” data type.
 We can use up-to 6 digits after decimal using float data type.
 For example, 10.456789 can be stored in a variable using float data type.
2. double:
 Double data type is also same as float data type which allows up-to 10
digits after decimal.
 The range for double datatype is from 1E–37 to 1E+37.
1.3.1. sizeof () function in C:
sizeof () function is used to find the memory space allocated for each C data
types.
#include <stdio.h>
#include <limits.h>
int main()
{
int a;
char b;
float c;
double d;
printf("Storage size for int data type:%d n",sizeof(a));
printf("Storage size for char data type:%d n",sizeof(b));
printf("Storage size for float data type:%d n",sizeof(c));
printf("Storage size for double data type:%dn",sizeof(d));
return 0;
}
Output:
Storage size for int data type:4
Storage size for char data type:1
Storage size for float data type:4
Storage size for double data type:8
1.3.2. Modifiers in C:
 The amount of memory space to be allocated for a variable is derived by
modifiers.
 Modifiers are prefixed with basic data types to modify (either increase or
decrease) the amount of storage space allocated to a variable.
 For example, storage space for int data type is 4 byte for 32 bit
processor. We can increase the range by using long int which is 8
byte. We can decrease the range by using short int which is 2 byte.
 There are 5 modifiers available in C language. They are,
1. short
2. long
3. signed
4. unsigned
5. long long
 Below table gives the detail about the storage size of each C basic data
type in 16 bit processor.
Please keep in mind that storage size and range for int and float datatype
will vary depend on the CPU processor (8,16, 32 and 64 bit)
S.No C Data types storage Range
Size
1 char 1 –127 to 127
2 int 2 –32,767 to 32,767
3 float 4
1E–37 to 1E+37 with six digits of
precision
4 double 8
1E–37 to 1E+37 with ten digits
of precision
5
long double
10
1E–37 to 1E+37 with ten digits
of precision
6 long int 4
–2,147,483,647 to
2,147,483,647
7 short int 2 –32,767 to 32,767
8
unsigned short
int
2 0 to 65,535
9 signed short int 2 –32,767 to 32,767
10 long long int 8
–(2power(63) –1) to 2(power)63
–1
11 signed long int 4
–2,147,483,647 to
2,147,483,647
12
unsigned long
int
4 0 to 4,294,967,295
13
unsigned long
long int
8 2(power)64 –1
Key words
auto double int struct
break else long switch
case enum register typedef
char extern return union
const float short unsigned
continue for signed void
default goto sizeof volatile
do if static while

More Related Content

PDF
Introduction to c++ ppt
PPTX
PPTX
C language ppt
PPT
Introduction to Basic C programming 01
PPTX
Programming in C Presentation upto FILE
PPT
C# basics
PPTX
C# programming language
ODP
Python Presentation
Introduction to c++ ppt
C language ppt
Introduction to Basic C programming 01
Programming in C Presentation upto FILE
C# basics
C# programming language
Python Presentation

What's hot (20)

PPT
Variables in C Programming
PDF
C++ Files and Streams
PPTX
C++ presentation
DOC
C fundamental
PPT
Lecture 1- History of C Programming
PPTX
Introduction to programming
PPTX
Type conversion
PDF
Methods in Java
PPT
Introduction to JavaScript
PPT
C programming presentation for university
PPT
Introduction to c programming
PDF
Arrays in Java
PPTX
C# Tutorial
PPT
PPT
PPT
History of c
PPTX
History of C Programming Language
PDF
Algorithm and c language
PPTX
Variables in C++, data types in c++
PPTX
Functions in python slide share
Variables in C Programming
C++ Files and Streams
C++ presentation
C fundamental
Lecture 1- History of C Programming
Introduction to programming
Type conversion
Methods in Java
Introduction to JavaScript
C programming presentation for university
Introduction to c programming
Arrays in Java
C# Tutorial
History of c
History of C Programming Language
Algorithm and c language
Variables in C++, data types in c++
Functions in python slide share
Ad

Viewers also liked (20)

PPTX
C programming tutorial for beginners
PPT
Introduction to programming with c,
PPT
C ppt
PPTX
C Programming Language Part 6
PPTX
C Programming Language Tutorial for beginners - JavaTpoint
PPTX
Medicaid organization profile
ODP
C language. Introduction
PPTX
Основи мови Ci
PPTX
PPS
01 iec t1_s1_oo_ps_session_01
PPT
C programming
PPT
03 the c language
PPTX
Union in C programming
PPTX
PPTX
Strings in C
PPTX
C programming - String
PPT
Structure in C
PPT
SAP BI 7 security concepts
C programming tutorial for beginners
Introduction to programming with c,
C ppt
C Programming Language Part 6
C Programming Language Tutorial for beginners - JavaTpoint
Medicaid organization profile
C language. Introduction
Основи мови Ci
01 iec t1_s1_oo_ps_session_01
C programming
03 the c language
Union in C programming
Strings in C
C programming - String
Structure in C
SAP BI 7 security concepts
Ad

Similar to C tutorial (20)

PPTX
PPS_unit_2_gtu_sem_2_year_2023_GTUU.pptx
PPTX
unit 1 cpds.pptx
DOCX
PPTX
C language
PPTX
c-introduction.pptx
PPSX
Lecture 2
PPTX
Programming in c
PDF
Data structure & Algorithms - Programming in C
PPTX
Fundamentals of Programming Constructs.pptx
PPTX
LESSON1-C_programming (1).GRADE 8 LESSONpptx
DOCX
Let's us c language (sabeel Bugti)
PPTX
Basic C programming Language - Unit 1.pptx
PPT
All C ppt.ppt
PDF
Reduce course notes class xii
PPT
cs8251 unit 1 ppt
PPTX
PDF
introduction to programming using ANSI C
PPTX
Bsc cs i pic u-2 datatypes and variables in c language
PPTX
Basic of Structered Programming in C psd
PPT
Fundamental of C Programming Language and Basic Input/Output Function
PPS_unit_2_gtu_sem_2_year_2023_GTUU.pptx
unit 1 cpds.pptx
C language
c-introduction.pptx
Lecture 2
Programming in c
Data structure & Algorithms - Programming in C
Fundamentals of Programming Constructs.pptx
LESSON1-C_programming (1).GRADE 8 LESSONpptx
Let's us c language (sabeel Bugti)
Basic C programming Language - Unit 1.pptx
All C ppt.ppt
Reduce course notes class xii
cs8251 unit 1 ppt
introduction to programming using ANSI C
Bsc cs i pic u-2 datatypes and variables in c language
Basic of Structered Programming in C psd
Fundamental of C Programming Language and Basic Input/Output Function

More from Chukka Nikhil Chakravarthy (19)

PDF
DESIGN AND DEVELOPMENT OF SOLAR CHARGE CONTROLLER WITH SUN TRACKING
PPTX
extint,endangered, endmic species
PPTX
types of resources
PPT
ISOMETRIC DRAWING
PPT
ORTHOGRAPHIC PROJECTIONS
PPT
projection of solide
PPT
projection of solids
PPT
projection of planes
PPT
projection of planes
PPT
angle of projections
PPT
construction of ellipse and scales
DOCX
C – operators and expressions
DOCX
Looping statements
PPTX
7 wonders of world(new)
DESIGN AND DEVELOPMENT OF SOLAR CHARGE CONTROLLER WITH SUN TRACKING
extint,endangered, endmic species
types of resources
ISOMETRIC DRAWING
ORTHOGRAPHIC PROJECTIONS
projection of solide
projection of solids
projection of planes
projection of planes
angle of projections
construction of ellipse and scales
C – operators and expressions
Looping statements
7 wonders of world(new)

Recently uploaded (20)

PPTX
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
PDF
Encapsulation theory and applications.pdf
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PPTX
sap open course for s4hana steps from ECC to s4
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Review of recent advances in non-invasive hemoglobin estimation
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Approach and Philosophy of On baking technology
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
Encapsulation theory and applications.pdf
The Rise and Fall of 3GPP – Time for a Sabbatical?
NewMind AI Weekly Chronicles - August'25 Week I
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
sap open course for s4hana steps from ECC to s4
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Dropbox Q2 2025 Financial Results & Investor Presentation
Per capita expenditure prediction using model stacking based on satellite ima...
Review of recent advances in non-invasive hemoglobin estimation
The AUB Centre for AI in Media Proposal.docx
MIND Revenue Release Quarter 2 2025 Press Release
Building Integrated photovoltaic BIPV_UPV.pdf
Approach and Philosophy of On baking technology
Digital-Transformation-Roadmap-for-Companies.pptx
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Agricultural_Statistics_at_a_Glance_2022_0.pdf
20250228 LYD VKU AI Blended-Learning.pptx

C tutorial

  • 1. C – Language History  C language is a structure oriented programming language, was developed at Bell Laboratories in 1972 by Dennis Ritchie  C language features were derived from earlier language called “B” (Basic CombinedProgramming Language – BCPL)  C language was invented for implementing UNIX operating system  In 1978, Dennis Ritchie and Brian Kernighan published the first edition “The C Programming Language” and commonly known as K&R C  In 1983, the American National Standards Institute (ANSI) established a committee to provide a modern, comprehensive definition of C. The resulting definition, the ANSI standard, or “ANSI C”, was completed late 1988.  Operating systems, C compiler and all UNIX application programs are written in C language  It is also called as procedure oriented programming language  C language is reliable, simple and easy to use.  C has been coded in assembly language Uses of C language: C language is used for developing system applications that forms major portion of operating systems such as Windows, UNIX and Linux. Below are some examples of C being used?  Database systems  Graphics packages Word processors  Operating system development  Compilers and Assemblers  Network drivers  Interpreters Which level the C language is belonging to? S.no High Level Middle Level Low Level 1 High level languages provides almost Middle level languages don’t provide all the Low level languages provides
  • 2. everything that the programmer might need to do as already built into the language built-in functions found in high level languages, but provides all building blocks that we need to produce the result we want nothing other than access to the machines basic instruction set 2 Examples: Java, Python C, C++ Assembler C language is a structured language S.no Structure oriented Object oriented Non structure 1 In this type of language, large programs are divided into small programs called functions In this type of language, programs are divided into objects There is no specific structure for programming this language 2 Prime focus is on functions and procedures that operate on data Prime focus is on the data that is being operated and not on the functions or procedures N/A 3 Data moves freely around the systems from one function to another Data is hidden and cannot be accessed by external functions N/A
  • 3. 4 Program structure follows “Top Down Approach” Program structure follows “Bottom UP Approach” N/A 5 Examples: C, Pascal, ALGOL and Modula-2 C++, JAVA and C# (C sharp) BASIC, COBOL, FORTRAN Key points to remember: 1. C language is structured, middle level programming language developed by Dennis Ritchie 2. Operating system programs such as Windows, Unix, Linux are written by C language 3. C89/C90 and C99 are two standardized editions of C language 4. C has been written in assembly language C – printf and scanf  printf() and scanf() functions are inbuilt library functions in C which are available in C library by default. These functions are declared and related macros are defined in “stdio.h” which is a header file.  We have to include “stdio.h” file as shown in below C program to make use of these printf() and scanf() library functions. 1. C printf() function:  printf() function is used to print the “character, string, float, integer, octal and hexadecimal values” onto the output screen.  We use printf() function with %d format specifier to display the value of an integer variable.  Similarly %c is used to display character, %f for float variable, %s for string variable, %lf for double and %x for hexadecimal variable.  To generate a newline,we use “n” in C printf() statement.
  • 4. Note:  C language is case sensitive. For example, printf() and scanf() are different from Printf() and Scanf(). All characters in printf() and scanf() functions must be in lower case. #include <stdio.h> int main() { char ch = 'A'; char str[20] = "NIIT.com"; float flt = 10.234; int no = 150; double dbl = 20.123456; printf("Character is %c n", ch); printf("String is %s n" , str); printf("Float value is %f n", flt); printf("Integer value is %dn" , no); printf("Double value is %lf n", dbl); printf("Octal value is %o n", no); printf("Hexadecimal value is %x n", no); return 0; } Output: Character is A String is NIIT.COM Float value is 10.234000 Integer value is 150 Double value is 20.123456 Octal value is 226 Hexadecimal value is 96
  • 5. You can see the output with the same data which are placed within the double quotes of printf statement in the program except  %d got replaced by value of an integer variable (no),  %c got replaced by value of a character variable (ch),  %f got replaced by value of a float variable (flt),  %lf got replaced by value of a double variable (dbl),  %s got replaced by value of a string variable (str),  %o got replaced by a octal value corresponding to integer variable (no),  %x got replaced by a hexadecimal value corresponding to integer variable  n got replaced by a newline. 2. C scanf() function:  scanf() function is used to read character, string, numeric data from keyboard  Consider below example program where user enters a character. This value is assigned to the variable “ch” and then displayed.  Then, user enters a string and this value is assigned to the variable”str” and then displayed. Example program for printf() and scanf() functions in C: #include <stdio.h> int main() { char ch; char str[100]; printf("Enter any character n"); scanf("%c", &ch); printf("Entered character is %c n", ch); printf("Enter any string ( upto 100 character ) n"); scanf("%s", &str);
  • 6. printf("Entered string is %s n", str); } Output:   The format specifier %d is used in scanf () statement. So that, the value entered is received as an integer and %s for string.  Ampersand is used before variable name “ch” in scanf () statement as &ch.  It is just like in a pointer which is used to point to the variable. For more information about how pointer works C – Data Types  C data types are defined as the data storage format that a variable can store a data to perform a specific operation.  Data types are used to define a variable before to use in a program.  Size of variable, constant and array are determined by data types. C – data types: There are four data types in C language. They are, S.no Types Data Types 1 Basic data types int, char, float, double 2 Enumeration data type enum 3 Derived data type pointer, array, structure, union 4 Void data type void Enter any character a Entered character is a Enter any string ( upto 100 character ) hai Entered string is hai
  • 7. 1. Basic data types in C: 1.1. Integer data type:  Integer data type allows a variable to store numeric values.  “int” keyword is used to refer integer data type.  The storage size of int data type is 2 or 4 or 8 byte.  It varies depend upon the processor in the CPU that we use. If we are using 16 bit processor, 2 byte (16 bit) of memory will be allocated for int data type.  Like wise, 4 byte (32 bit) of memory for 32 bit processor and 8 byte (64 bit) of memory for 64 bit processor is allocated for int datatype.  int (2 byte) can store values from -32,768 to +32,767  int (4 byte) can store values from -2,147,483,648 to +2,147,483,647.  If you want to use the integer value that crosses the above limit, you can go for “long int” and “long long int” for which the limits are very high. Note:  We can’t store decimal values using int data type.  If we use int data type to store decimal values, decimal values will be truncated and we will get only whole number.  In this case, float data type can be used to store decimal values in a variable. 1.2. Character data type:  Character data type allows a variable to store only one character.  Storage size of character data type is 1. We can store only one character using character data type.  “char” keyword is used to refer character data type.  For example, ‘A’ can be stored using char datatype. You can’t store more than one character using char data type.  Please refer C – Strings topic to know how to store more than one characters in a variable. 1.3. Floating point data type: Floating point data type consists of 2 types. They are, 1. float 2. double
  • 8. 1. float:  Float data type allows a variable to store decimal values.  Storage size of float data type is 4. This also varies depend upon the processor in the CPU as “int” data type.  We can use up-to 6 digits after decimal using float data type.  For example, 10.456789 can be stored in a variable using float data type. 2. double:  Double data type is also same as float data type which allows up-to 10 digits after decimal.  The range for double datatype is from 1E–37 to 1E+37. 1.3.1. sizeof () function in C: sizeof () function is used to find the memory space allocated for each C data types. #include <stdio.h> #include <limits.h> int main() { int a; char b; float c; double d; printf("Storage size for int data type:%d n",sizeof(a)); printf("Storage size for char data type:%d n",sizeof(b)); printf("Storage size for float data type:%d n",sizeof(c));
  • 9. printf("Storage size for double data type:%dn",sizeof(d)); return 0; } Output: Storage size for int data type:4 Storage size for char data type:1 Storage size for float data type:4 Storage size for double data type:8 1.3.2. Modifiers in C:  The amount of memory space to be allocated for a variable is derived by modifiers.  Modifiers are prefixed with basic data types to modify (either increase or decrease) the amount of storage space allocated to a variable.  For example, storage space for int data type is 4 byte for 32 bit processor. We can increase the range by using long int which is 8 byte. We can decrease the range by using short int which is 2 byte.  There are 5 modifiers available in C language. They are, 1. short 2. long 3. signed 4. unsigned 5. long long  Below table gives the detail about the storage size of each C basic data type in 16 bit processor. Please keep in mind that storage size and range for int and float datatype will vary depend on the CPU processor (8,16, 32 and 64 bit) S.No C Data types storage Range
  • 10. Size 1 char 1 –127 to 127 2 int 2 –32,767 to 32,767 3 float 4 1E–37 to 1E+37 with six digits of precision 4 double 8 1E–37 to 1E+37 with ten digits of precision 5 long double 10 1E–37 to 1E+37 with ten digits of precision 6 long int 4 –2,147,483,647 to 2,147,483,647 7 short int 2 –32,767 to 32,767 8 unsigned short int 2 0 to 65,535 9 signed short int 2 –32,767 to 32,767 10 long long int 8 –(2power(63) –1) to 2(power)63 –1 11 signed long int 4 –2,147,483,647 to 2,147,483,647 12 unsigned long int 4 0 to 4,294,967,295 13 unsigned long long int 8 2(power)64 –1
  • 11. Key words auto double int struct break else long switch case enum register typedef char extern return union const float short unsigned continue for signed void default goto sizeof volatile do if static while