C is world most popular programming language.
Unix os is developed in 'C' language.
Oracle is wriiten in'C'.
MY-SQL is written in 'C'.
Almost every device driver is wriiten in C.
Major part of web browser is wriiten in C.
Language
Year
Developed by
ALGOL
1960
internation group
BCPL
1966
Martin Richard
B
1969
Ken Thompson
Tradition c
1972
Dennis Ritchie
K and RC
1978
Kernighan and Ritchie
ANSIC
1989
ANSI comittee
ANSI/ISOC
1990
ISO comittee
Data types in C
Sr.no
Data type
Meaning
Range
Size in bytes
Format specifier
Declaration/example
1
Integer
short signed int
A number without decimal point
-32768 to +32767
2
%d
int a;
short unsigned int
A number without sign
0 to65535
2
%u
short unsigned int a; or unsigned int a; or unsigned a;
Long signed int
A number without decimal point
-214783648 to +2147483647
4
%Ld
long int a;
Long unsigned int
A number without int
0 to 4294967295
4
%Lu
long unsigned int a;
2
character
signed char
single digit, alphabate,symbol enclosed within single quote
-128 to +127
1
%c
char div;
unsigned char
single digit, alphabate,symbol enclosed within single quote