C LANGUAGE
INTRODUCTION
edit
- C (pronounced as "see", like the letter C) is a general-purpose computer programming language developed between 1969 and 1973 by Dennis Ritchie at the Bell Telephone Laboratories for use with the Unix operating system.
- C (pronounced as "see", like the letter C) is a general-purpose computer programming language developed between 1969 and 1973 by Dennis Ritchie at the Bell Telephone Laboratories for use with the Unix operating system.
- Although C was designed for implementing system software,it is also widely used for developing portable application software.
- Although C was designed for implementing system software,it is also widely used for developing portable application software.
- C is one of the most widely used programming languages of all time and there are very few computer architectures for which a C compiler does not exist. C has greatly influenced many other popular programming languages, most notably C++, which began as an extension to C.
- C is one of the most widely used programming languages of all time and there are very few computer architectures for which a C compiler does not exist. C has greatly influenced many other popular programming languages, most notably C++, which began as an extension to C.
SIMPLE CODES
editInteger | int | For numbers only |
Character | char | For alphabets and symbols |
String | String | for big digit numbers and words |
Decimals | float and double | float for small digit decimals and double for big digits decimal |
LOOPING
edit
for condition | for(initialization; condition; increment); | |
if else | if condition;{condition}else | |
do while | do condition{condition}while |