Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

Data Types Constant

---------- --------

char 'A' 'a' '1' ' ' '$' '\n'

int 345 Decimal Integer Constant

045 Octal Integer Constant

0x43 Hexadecimal Integer Constant

long int 78L Long Integer constant

float 2.34F Float Constant


2.34e2 Scientific Notation

double 2.34 Double Constant

long double 2.34L Long Double Constant

Escape Sequences(Characters):

\'

\"

\\

\b

\t

\n

\r

You might also like