» C is Mother language.
» C programming is considered as the base for other programming languages, that is why it is known as mother language.
» C is programming language based on procedural oriented programming.
» C is programming language developed at AT&T's Bell laboratories of USA in 1972
» It was designed & written by a Dennis Ritchie.
» In the late seventies C began to replace the more familiar languages of that time
Like PL/I, AlGOL etc.
» C seems so popular is because it is reliable, simple & easy to use.
#include void main() { printf("Hello World!!"); }
Output:-
Hello World !!
#include void main() { printf("\n Hello World!!"); printf("\n How Are You"); printf("\n What's Going On"); }
Output:-
Hello World !!
How Are You
What's Going On