SlideShare a Scribd company logo
1 of 2
C Tokens
Smallest individual units like individual
words and punctuation marks are called
tokens. They are 6 types.
1.Keywords
2.Constants
3.Identifiers
4.Strings
5.Characters
6.Special symbols
•
•

Keywords

cannot be used as variable name or function name
written in lowercase

S.No

Primitive
data types

User
Defined data
types

Constants

Statements

Memory
types

Operator

1

char

enum

const

break

auto

size of

2

double

union

type def

case

extern

3

long

struct

continue

register

4

short

default

static

5

signed

do

volatile

6

unsigned

else

7

void

for

8

float

goto

9

int

if

10

return

11

switch

12

while

More Related Content

Viewers also liked

Gracias por estar aqui
Gracias por estar aquiGracias por estar aqui
Gracias por estar aquiAngela Muñoz
 
Gestor de proyecto diplomado
Gestor de proyecto diplomadoGestor de proyecto diplomado
Gestor de proyecto diplomadoRuby Perez
 
REGALOS CON ENCANTO - HERRAMIENTAS WEB 2.0
REGALOS CON ENCANTO - HERRAMIENTAS WEB 2.0REGALOS CON ENCANTO - HERRAMIENTAS WEB 2.0
REGALOS CON ENCANTO - HERRAMIENTAS WEB 2.0mariangruiz
 
Wealth Trends Digest
Wealth Trends DigestWealth Trends Digest
Wealth Trends DigestDenis Pringle
 
Weblogs als Website
Weblogs als WebsiteWeblogs als Website
Weblogs als WebsiteKMTO
 
Jose antonio quispe mendoza 1
Jose antonio quispe mendoza 1Jose antonio quispe mendoza 1
Jose antonio quispe mendoza 1josemrcl
 
Wi d vortrag screenshots
Wi d vortrag screenshotsWi d vortrag screenshots
Wi d vortrag screenshotspaulamarlene
 
Development of an imagery system for automatic classification of geological m...
Development of an imagery system for automatic classification of geological m...Development of an imagery system for automatic classification of geological m...
Development of an imagery system for automatic classification of geological m...Aurélien Dor
 
Agel Dreamteam Network
Agel Dreamteam NetworkAgel Dreamteam Network
Agel Dreamteam Networkbismark911
 
Shahad-Fai
Shahad-FaiShahad-Fai
Shahad-FaiAmeera
 
Revision semantics
Revision semanticsRevision semantics
Revision semanticszouhirgabsi
 
Contenido 1 unidad dos
Contenido 1 unidad dosContenido 1 unidad dos
Contenido 1 unidad dosGlenda Canel
 
3. Data types and Variables
3. Data types and Variables3. Data types and Variables
3. Data types and VariablesNilesh Dalvi
 
Words sentences and dictionaryes by:Diana Villarreal
Words sentences and dictionaryes by:Diana VillarrealWords sentences and dictionaryes by:Diana Villarreal
Words sentences and dictionaryes by:Diana Villarreal12diana1993
 
Инвестиционный паспорт Константиновского района
Инвестиционный паспорт Константиновского районаИнвестиционный паспорт Константиновского района
Инвестиционный паспорт Константиновского районаАлексей Арешев
 
Kotlin - Evolua seu código Java (TDC-2016) Alex Magalhaes
Kotlin - Evolua seu código Java (TDC-2016) Alex MagalhaesKotlin - Evolua seu código Java (TDC-2016) Alex Magalhaes
Kotlin - Evolua seu código Java (TDC-2016) Alex MagalhaesAlex Magalhaes
 

Viewers also liked (20)

Gracias por estar aqui
Gracias por estar aquiGracias por estar aqui
Gracias por estar aqui
 
Gestor de proyecto diplomado
Gestor de proyecto diplomadoGestor de proyecto diplomado
Gestor de proyecto diplomado
 
Sil
SilSil
Sil
 
REGALOS CON ENCANTO - HERRAMIENTAS WEB 2.0
REGALOS CON ENCANTO - HERRAMIENTAS WEB 2.0REGALOS CON ENCANTO - HERRAMIENTAS WEB 2.0
REGALOS CON ENCANTO - HERRAMIENTAS WEB 2.0
 
Wealth Trends Digest
Wealth Trends DigestWealth Trends Digest
Wealth Trends Digest
 
Weblogs als Website
Weblogs als WebsiteWeblogs als Website
Weblogs als Website
 
Jose antonio quispe mendoza 1
Jose antonio quispe mendoza 1Jose antonio quispe mendoza 1
Jose antonio quispe mendoza 1
 
B&P
B&PB&P
B&P
 
Wi d vortrag screenshots
Wi d vortrag screenshotsWi d vortrag screenshots
Wi d vortrag screenshots
 
Development of an imagery system for automatic classification of geological m...
Development of an imagery system for automatic classification of geological m...Development of an imagery system for automatic classification of geological m...
Development of an imagery system for automatic classification of geological m...
 
Velvet freyre
Velvet freyreVelvet freyre
Velvet freyre
 
Agel Dreamteam Network
Agel Dreamteam NetworkAgel Dreamteam Network
Agel Dreamteam Network
 
Shahad-Fai
Shahad-FaiShahad-Fai
Shahad-Fai
 
Revision semantics
Revision semanticsRevision semantics
Revision semantics
 
Contenido 1 unidad dos
Contenido 1 unidad dosContenido 1 unidad dos
Contenido 1 unidad dos
 
3. Data types and Variables
3. Data types and Variables3. Data types and Variables
3. Data types and Variables
 
Words sentences and dictionaryes by:Diana Villarreal
Words sentences and dictionaryes by:Diana VillarrealWords sentences and dictionaryes by:Diana Villarreal
Words sentences and dictionaryes by:Diana Villarreal
 
Инвестиционный паспорт Константиновского района
Инвестиционный паспорт Константиновского районаИнвестиционный паспорт Константиновского района
Инвестиционный паспорт Константиновского района
 
archaeologiedesweb
archaeologiedeswebarchaeologiedesweb
archaeologiedesweb
 
Kotlin - Evolua seu código Java (TDC-2016) Alex Magalhaes
Kotlin - Evolua seu código Java (TDC-2016) Alex MagalhaesKotlin - Evolua seu código Java (TDC-2016) Alex Magalhaes
Kotlin - Evolua seu código Java (TDC-2016) Alex Magalhaes
 

Token03

  • 1. C Tokens Smallest individual units like individual words and punctuation marks are called tokens. They are 6 types. 1.Keywords 2.Constants 3.Identifiers 4.Strings 5.Characters 6.Special symbols
  • 2. • • Keywords cannot be used as variable name or function name written in lowercase S.No Primitive data types User Defined data types Constants Statements Memory types Operator 1 char enum const break auto size of 2 double union type def case extern 3 long struct continue register 4 short default static 5 signed do volatile 6 unsigned else 7 void for 8 float goto 9 int if 10 return 11 switch 12 while