C is a programming language. C is one of the oldest language.
C is a programming language.
C is one of the oldest language.
C-programming was developed by Dennis Ritchie at AT & T's Bell Labs, USA in 1972.
C language is used to program a wide variety of systems, some of the uses of c are as follows
A variable is a container which stores a value. It is name of memory location, which is used to store value.
Example:-
int x=2;
float y=3.5;
char letter='s';
char name[20]="Soopro Pathshala";
Keywords are reserved words, whose meaning is already known to the compiler. There are 32 keywords available in c.
auto | double | struct | int |
case | return | enum | typedef |
break | long | else | switch |
char | register | extern | union |
const | short | float | unsigned |
continue | signed | for | void |
default | sizeof | goto | volatile |
do | static | if | while |
comments are used to clarify something about the program in plain languagqe.
There are two types of comments in C-programming.
There are some rules which are applicable to all the C-programming.