Introduction
C Language is
high level general purposed language which was developed by Dennis M. Ritchie
in year 1970. The name is given as C because it is a successor of B language.
Rules for C language
· It is case sensitive language i.e. the programing is done in small case
·
Statement is End by using semicolon
·
Statement cannot be continue is many
line i.e. statement should be in same
line
·
Multiple statements can be in same line.
Example
#include <stdio.h>
main()
{
/* Simple program*/
printf(“Hello world”);
}
Hope this information helps u to get started. Will explain more in next post.