SlideShare a Scribd company logo
1 of 34
C Programming - Data Types, Variables and Constants ,[object Object],Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.
Programming in C: A Practical Approach Data Types, Variables and Constants ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.
[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Programming in C: A Practical Approach Data Types, Variables and Constants  Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.
[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Programming in C: A Practical Approach Data Types, Variables and Constants  Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.
[object Object],[object Object],[object Object],[object Object],Programming in C: A Practical Approach Data Types, Variables and Constants  Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.
[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Programming in C: A Practical Approach Data Types, Variables and Constants  Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.
[object Object],[object Object],[object Object],[object Object],Programming in C: A Practical Approach Data Types, Variables and Constants  Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.
[object Object],Programming in C: A Practical Approach Data Types, Variables and Constants  Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.   SHORTHAND DECLARATION STATEMENT LONGHAND DECLARATION STATEMENT ,[object Object],[object Object],[object Object],2.  Can only be used to declare identifiers of the same type.  e.g. int a=10, float b=2.3; is an invalid statement.  2.  It can be used to declare identifiers of different types  e.g. int a=10;float b=2.3; are valid  statements.
Programming in C: A Practical Approach Data Types, Variables and Constants  Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.   Data Types
Programming in C: A Practical Approach Data Types, Variables and Constants  Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.
Programming in C: A Practical Approach Data Types, Variables and Constants  Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.
[object Object],[object Object],[object Object],Programming in C: A Practical Approach Data Types, Variables and Constants  Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.
[object Object],[object Object],[object Object],[object Object],[object Object],Programming in C: A Practical Approach Data Types, Variables and Constants  Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.
[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Programming in C: A Practical Approach Data Types, Variables and Constants  Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.
[object Object],[object Object],[object Object],Programming in C: A Practical Approach Data Types, Variables and Constants  Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.
[object Object],[object Object],[object Object],[object Object],Programming in C: A Practical Approach Data Types, Variables and Constants  ,[object Object],[object Object],[object Object],Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.
[object Object],[object Object],[object Object],[object Object],Programming in C: A Practical Approach Data Types, Variables and Constants  Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.
[object Object],Programming in C: A Practical Approach Data Types, Variables and Constants  Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.
[object Object],[object Object],[object Object],[object Object],[object Object],Programming in C: A Practical Approach Data Types, Variables and Constants  Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.
[object Object],[object Object],[object Object],[object Object],[object Object],Programming in C: A Practical Approach Data Types, Variables and Constants  Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.
[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Programming in C: A Practical Approach Data Types, Variables and Constants  Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.
[object Object],[object Object],Programming in C: A Practical Approach Data Types, Variables and Constants  Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.
[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Programming in C: A Practical Approach Data Types, Variables and Constants  Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.
[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Programming in C: A Practical Approach Data Types, Variables and Constants  Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.
[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Programming in C: A Practical Approach Data Types, Variables and Constants  Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.
[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Programming in C: A Practical Approach Data Types, Variables and Constants  Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.
[object Object],[object Object],Programming in C: A Practical Approach Data Types, Variables and Constants  Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.
[object Object],Programming in C: A Practical Approach Data Types, Variables and Constants  Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.   ESCAPE SEQUENCES CHARACTER VALUE ACTION ON OUTPUT DEVICE ‘ apos;’ Single quotation mark Prints ‘ ‘ ’ Double quotation mark (“) Prints “ ‘ ’ Question mark (?) Prints ? ‘ ’ Backslash character ( Prints ‘ ’ Alert Alerts by generating beep ‘ ’ Backspace Moves the cursor one position to the left of its current position. ‘ ’ Form feed Moves the cursor to the beginning of next page. ‘ ’ New line Moves the cursor to the beginning of the next line. ‘ ’ Carriage return Moves the cursor to the beginning of the current line. ‘ ’ Horizontal tab Moves the cursor to the next horizontal tab stop. ‘ ’ Vertical tab Moves the cursor to the next vertical tab stop. ‘ ’ Null character Prints nothing
[object Object],Programming in C: A Practical Approach Data Types, Variables and Constants  Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.
[object Object],Programming in C: A Practical Approach Data Types, Variables and Constants  Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.   LINE PROGRAM OUTPUT WINDOW 1 //Comment: First C program Hello Readers!! 2 #include<stdio.h> 3 main() 4 { 5 printf(“Hello Readers!!”); 6 }
[object Object],[object Object],[object Object],Programming in C: A Practical Approach Data Types, Variables and Constants  Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.
[object Object],[object Object],[object Object],[object Object],[object Object],Programming in C: A Practical Approach Data Types, Variables and Constants  Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.
[object Object],[object Object],Programming in C: A Practical Approach Data Types, Variables and Constants  Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.
[object Object],Programming in C: A Practical Approach Data Types, Variables and Constants  Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.

More Related Content

What's hot

Basics of C programming
Basics of C programmingBasics of C programming
Basics of C programmingavikdhupar
 
Data types in C language
Data types in C languageData types in C language
Data types in C languagekashyap399
 
Fundamentals of c programming
Fundamentals of c programmingFundamentals of c programming
Fundamentals of c programmingChitrank Dixit
 
Keywords in c language
Keywords in c languageKeywords in c language
Keywords in c languageJoydeep16
 
Input output statement in C
Input output statement in CInput output statement in C
Input output statement in CMuthuganesh S
 
3 data-types-in-c
3 data-types-in-c3 data-types-in-c
3 data-types-in-cteach4uin
 
358 33 powerpoint-slides_3-pointers_chapter-3
358 33 powerpoint-slides_3-pointers_chapter-3358 33 powerpoint-slides_3-pointers_chapter-3
358 33 powerpoint-slides_3-pointers_chapter-3sumitbardhan
 
Introduction of c programming
Introduction of c programmingIntroduction of c programming
Introduction of c programmingTarun Sharma
 
C Pointers
C PointersC Pointers
C Pointersomukhtar
 
What is token c programming
What is token c programmingWhat is token c programming
What is token c programmingRumman Ansari
 
Static Data Members and Member Functions
Static Data Members and Member FunctionsStatic Data Members and Member Functions
Static Data Members and Member FunctionsMOHIT AGARWAL
 
datatypes and variables in c language
 datatypes and variables in c language datatypes and variables in c language
datatypes and variables in c languageRai University
 

What's hot (20)

Basics of C programming
Basics of C programmingBasics of C programming
Basics of C programming
 
Data types in C language
Data types in C languageData types in C language
Data types in C language
 
Fundamentals of c programming
Fundamentals of c programmingFundamentals of c programming
Fundamentals of c programming
 
Keywords in c language
Keywords in c languageKeywords in c language
Keywords in c language
 
Input output statement in C
Input output statement in CInput output statement in C
Input output statement in C
 
Basic concept of OOP's
Basic concept of OOP'sBasic concept of OOP's
Basic concept of OOP's
 
Structure in C
Structure in CStructure in C
Structure in C
 
Character set of c
Character set of cCharacter set of c
Character set of c
 
Pointer in c
Pointer in cPointer in c
Pointer in c
 
Programming in c Arrays
Programming in c ArraysProgramming in c Arrays
Programming in c Arrays
 
3 data-types-in-c
3 data-types-in-c3 data-types-in-c
3 data-types-in-c
 
358 33 powerpoint-slides_3-pointers_chapter-3
358 33 powerpoint-slides_3-pointers_chapter-3358 33 powerpoint-slides_3-pointers_chapter-3
358 33 powerpoint-slides_3-pointers_chapter-3
 
C tokens
C tokensC tokens
C tokens
 
Programming in c
Programming in cProgramming in c
Programming in c
 
Introduction of c programming
Introduction of c programmingIntroduction of c programming
Introduction of c programming
 
C Pointers
C PointersC Pointers
C Pointers
 
What is token c programming
What is token c programmingWhat is token c programming
What is token c programming
 
Static Data Members and Member Functions
Static Data Members and Member FunctionsStatic Data Members and Member Functions
Static Data Members and Member Functions
 
File handling in c
File handling in cFile handling in c
File handling in c
 
datatypes and variables in c language
 datatypes and variables in c language datatypes and variables in c language
datatypes and variables in c language
 

Viewers also liked

Constants and variables in c programming
Constants and variables in c programmingConstants and variables in c programming
Constants and variables in c programmingChitrank Dixit
 
INTRODUCTION TO C PROGRAMMING
INTRODUCTION TO C PROGRAMMINGINTRODUCTION TO C PROGRAMMING
INTRODUCTION TO C PROGRAMMINGAbhishek Dwivedi
 
Variable, constant, operators and control statement
Variable, constant, operators and control statementVariable, constant, operators and control statement
Variable, constant, operators and control statementEyelean xilef
 
Constants, Variables and Data Types in Java
Constants, Variables and Data Types in JavaConstants, Variables and Data Types in Java
Constants, Variables and Data Types in JavaAbhilash Nair
 
Java basics variables
 Java basics   variables Java basics   variables
Java basics variablesJoeReddieMedia
 
Using Variables in Programming
Using Variables in ProgrammingUsing Variables in Programming
Using Variables in Programmingflippanthorse6864
 
Python Programming: Variables
Python Programming: VariablesPython Programming: Variables
Python Programming: VariablesLeena Levashvili
 
02 functions, variables, basic input and output of c++
02   functions, variables, basic input and output of c++02   functions, variables, basic input and output of c++
02 functions, variables, basic input and output of c++Manzoor ALam
 
ITFT-Constants, variables and data types in java
ITFT-Constants, variables and data types in javaITFT-Constants, variables and data types in java
ITFT-Constants, variables and data types in javaAtul Sehdev
 
Unit 1 introduction to visual basic programming
Unit 1 introduction to visual basic programmingUnit 1 introduction to visual basic programming
Unit 1 introduction to visual basic programmingAbha Damani
 
Data Types and Variables In C Programming
Data Types and Variables In C ProgrammingData Types and Variables In C Programming
Data Types and Variables In C ProgrammingKamal Acharya
 

Viewers also liked (20)

Constants and variables in c programming
Constants and variables in c programmingConstants and variables in c programming
Constants and variables in c programming
 
INTRODUCTION TO C PROGRAMMING
INTRODUCTION TO C PROGRAMMINGINTRODUCTION TO C PROGRAMMING
INTRODUCTION TO C PROGRAMMING
 
Variable, constant, operators and control statement
Variable, constant, operators and control statementVariable, constant, operators and control statement
Variable, constant, operators and control statement
 
Data types
Data typesData types
Data types
 
Constants, Variables and Data Types in Java
Constants, Variables and Data Types in JavaConstants, Variables and Data Types in Java
Constants, Variables and Data Types in Java
 
Java basics variables
 Java basics   variables Java basics   variables
Java basics variables
 
Data struture lab
Data struture labData struture lab
Data struture lab
 
Using Variables in Programming
Using Variables in ProgrammingUsing Variables in Programming
Using Variables in Programming
 
Python Programming: Variables
Python Programming: VariablesPython Programming: Variables
Python Programming: Variables
 
02 functions, variables, basic input and output of c++
02   functions, variables, basic input and output of c++02   functions, variables, basic input and output of c++
02 functions, variables, basic input and output of c++
 
ITFT-Constants, variables and data types in java
ITFT-Constants, variables and data types in javaITFT-Constants, variables and data types in java
ITFT-Constants, variables and data types in java
 
C++ L01-Variables
C++ L01-VariablesC++ L01-Variables
C++ L01-Variables
 
Programming Variables
Programming VariablesProgramming Variables
Programming Variables
 
PHP Basic & Variables
PHP Basic & VariablesPHP Basic & Variables
PHP Basic & Variables
 
Data type
Data typeData type
Data type
 
Unit 1 introduction to visual basic programming
Unit 1 introduction to visual basic programmingUnit 1 introduction to visual basic programming
Unit 1 introduction to visual basic programming
 
Writing algorithms
Writing algorithmsWriting algorithms
Writing algorithms
 
C ppt
C pptC ppt
C ppt
 
Basic variables ppt
Basic variables pptBasic variables ppt
Basic variables ppt
 
Data Types and Variables In C Programming
Data Types and Variables In C ProgrammingData Types and Variables In C Programming
Data Types and Variables In C Programming
 

Similar to Chapter1 c programming data types, variables and constants

Interview Questions For C Language
Interview Questions For C Language Interview Questions For C Language
Interview Questions For C Language Rowank2
 
C Language Interview Questions: Data Types, Pointers, Data Structures, Memory...
C Language Interview Questions: Data Types, Pointers, Data Structures, Memory...C Language Interview Questions: Data Types, Pointers, Data Structures, Memory...
C Language Interview Questions: Data Types, Pointers, Data Structures, Memory...Rowank2
 
Interview Questions For C Language .pptx
Interview Questions For C Language .pptxInterview Questions For C Language .pptx
Interview Questions For C Language .pptxRowank2
 
Compiler Construction.pptx
Compiler Construction.pptxCompiler Construction.pptx
Compiler Construction.pptxBilalImran17
 
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 Centrejatin batra
 
C Prog. - Operators and Expressions
C Prog. - Operators and ExpressionsC Prog. - Operators and Expressions
C Prog. - Operators and Expressionsvinay arora
 
Programming Fundamentals
Programming FundamentalsProgramming Fundamentals
Programming FundamentalsHassan293
 
presentation_data_types_and_operators_1513499834_241350.pptx
presentation_data_types_and_operators_1513499834_241350.pptxpresentation_data_types_and_operators_1513499834_241350.pptx
presentation_data_types_and_operators_1513499834_241350.pptxKrishanPalSingh39
 
Data Types, Variables, and Constants in C# Programming
Data Types, Variables, and Constants in C# ProgrammingData Types, Variables, and Constants in C# Programming
Data Types, Variables, and Constants in C# ProgrammingSherwin Banaag Sapin
 
Literals,variables,datatype in C#
Literals,variables,datatype in C#Literals,variables,datatype in C#
Literals,variables,datatype in C#Prasanna Kumar SM
 

Similar to Chapter1 c programming data types, variables and constants (20)

Basic Of C language
Basic Of C languageBasic Of C language
Basic Of C language
 
Basics of C.ppt
Basics of C.pptBasics of C.ppt
Basics of C.ppt
 
CProgrammingTutorial
CProgrammingTutorialCProgrammingTutorial
CProgrammingTutorial
 
Interview Questions For C Language
Interview Questions For C Language Interview Questions For C Language
Interview Questions For C Language
 
Basics of c
Basics of cBasics of c
Basics of c
 
C Language Interview Questions: Data Types, Pointers, Data Structures, Memory...
C Language Interview Questions: Data Types, Pointers, Data Structures, Memory...C Language Interview Questions: Data Types, Pointers, Data Structures, Memory...
C Language Interview Questions: Data Types, Pointers, Data Structures, Memory...
 
Interview Questions For C Language .pptx
Interview Questions For C Language .pptxInterview Questions For C Language .pptx
Interview Questions For C Language .pptx
 
C basics
C basicsC basics
C basics
 
C basics
C basicsC basics
C basics
 
Compiler Construction.pptx
Compiler Construction.pptxCompiler Construction.pptx
Compiler Construction.pptx
 
C programming
C programming C programming
C programming
 
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
 
C Prog. - Operators and Expressions
C Prog. - Operators and ExpressionsC Prog. - Operators and Expressions
C Prog. - Operators and Expressions
 
C
CC
C
 
Programming Fundamentals
Programming FundamentalsProgramming Fundamentals
Programming Fundamentals
 
Structured Languages
Structured LanguagesStructured Languages
Structured Languages
 
presentation_data_types_and_operators_1513499834_241350.pptx
presentation_data_types_and_operators_1513499834_241350.pptxpresentation_data_types_and_operators_1513499834_241350.pptx
presentation_data_types_and_operators_1513499834_241350.pptx
 
C programming.pdf
C programming.pdfC programming.pdf
C programming.pdf
 
Data Types, Variables, and Constants in C# Programming
Data Types, Variables, and Constants in C# ProgrammingData Types, Variables, and Constants in C# Programming
Data Types, Variables, and Constants in C# Programming
 
Literals,variables,datatype in C#
Literals,variables,datatype in C#Literals,variables,datatype in C#
Literals,variables,datatype in C#
 

More from vinay arora

Search engine and web crawler
Search engine and web crawlerSearch engine and web crawler
Search engine and web crawlervinay arora
 
Use case diagram (airport)
Use case diagram (airport)Use case diagram (airport)
Use case diagram (airport)vinay arora
 
Use case diagram
Use case diagramUse case diagram
Use case diagramvinay arora
 
Lab exercise questions (AD & CD)
Lab exercise questions (AD & CD)Lab exercise questions (AD & CD)
Lab exercise questions (AD & CD)vinay arora
 
SEM - UML (1st case study)
SEM - UML (1st case study)SEM - UML (1st case study)
SEM - UML (1st case study)vinay arora
 
4 java - decision
4  java - decision4  java - decision
4 java - decisionvinay arora
 
3 java - variable type
3  java - variable type3  java - variable type
3 java - variable typevinay arora
 
2 java - operators
2  java - operators2  java - operators
2 java - operatorsvinay arora
 
1 java - data type
1  java - data type1  java - data type
1 java - data typevinay arora
 
Security & Protection
Security & ProtectionSecurity & Protection
Security & Protectionvinay arora
 
Process Synchronization
Process SynchronizationProcess Synchronization
Process Synchronizationvinay arora
 
CG - Output Primitives
CG - Output PrimitivesCG - Output Primitives
CG - Output Primitivesvinay arora
 
CG - Display Devices
CG - Display DevicesCG - Display Devices
CG - Display Devicesvinay arora
 
CG - Input Output Devices
CG - Input Output DevicesCG - Input Output Devices
CG - Input Output Devicesvinay arora
 
CG - Introduction to Computer Graphics
CG - Introduction to Computer GraphicsCG - Introduction to Computer Graphics
CG - Introduction to Computer Graphicsvinay arora
 
C Prog. - Strings (Updated)
C Prog. - Strings (Updated)C Prog. - Strings (Updated)
C Prog. - Strings (Updated)vinay arora
 

More from vinay arora (20)

Search engine and web crawler
Search engine and web crawlerSearch engine and web crawler
Search engine and web crawler
 
Use case diagram (airport)
Use case diagram (airport)Use case diagram (airport)
Use case diagram (airport)
 
Use case diagram
Use case diagramUse case diagram
Use case diagram
 
Lab exercise questions (AD & CD)
Lab exercise questions (AD & CD)Lab exercise questions (AD & CD)
Lab exercise questions (AD & CD)
 
SEM - UML (1st case study)
SEM - UML (1st case study)SEM - UML (1st case study)
SEM - UML (1st case study)
 
6 java - loop
6  java - loop6  java - loop
6 java - loop
 
4 java - decision
4  java - decision4  java - decision
4 java - decision
 
3 java - variable type
3  java - variable type3  java - variable type
3 java - variable type
 
2 java - operators
2  java - operators2  java - operators
2 java - operators
 
1 java - data type
1  java - data type1  java - data type
1 java - data type
 
Uta005 lecture3
Uta005 lecture3Uta005 lecture3
Uta005 lecture3
 
Uta005 lecture1
Uta005 lecture1Uta005 lecture1
Uta005 lecture1
 
Uta005 lecture2
Uta005 lecture2Uta005 lecture2
Uta005 lecture2
 
Security & Protection
Security & ProtectionSecurity & Protection
Security & Protection
 
Process Synchronization
Process SynchronizationProcess Synchronization
Process Synchronization
 
CG - Output Primitives
CG - Output PrimitivesCG - Output Primitives
CG - Output Primitives
 
CG - Display Devices
CG - Display DevicesCG - Display Devices
CG - Display Devices
 
CG - Input Output Devices
CG - Input Output DevicesCG - Input Output Devices
CG - Input Output Devices
 
CG - Introduction to Computer Graphics
CG - Introduction to Computer GraphicsCG - Introduction to Computer Graphics
CG - Introduction to Computer Graphics
 
C Prog. - Strings (Updated)
C Prog. - Strings (Updated)C Prog. - Strings (Updated)
C Prog. - Strings (Updated)
 

Recently uploaded

Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...fonyou31
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfchloefrazer622
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room servicediscovermytutordmt
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 

Recently uploaded (20)

Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room service
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 

Chapter1 c programming data types, variables and constants

  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9. Programming in C: A Practical Approach Data Types, Variables and Constants Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd. Data Types
  • 10. Programming in C: A Practical Approach Data Types, Variables and Constants Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.
  • 11. Programming in C: A Practical Approach Data Types, Variables and Constants Copyright © 2010 Dorling Kindersley (India) Pvt. Ltd.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.