What is C?
C is one of the most widely used programming language of all times.
It is a general purpose, block-structured, procedural, case-sensitive and high level programming language.
It is a general purpose, block-structured, procedural, case-sensitive and high level programming language.
Who is C Developer?
C is developed by Dennis Richie and his partner Ken Thompson at the Bell Telephone Laboratories in span of 1969 to 1973.
Why name is C?
It was named C because it evolved from earlier languages Basic Combined Programming Language(BCPL) and B.
Why to learn C?
- You should learn first basic programming skills to learn object oriented concept. Which will can be got through C very easily.
- You have to use basic elements of C always no matter in which platform you are.
- Graphical programming like 3D appplications, Mobile games and device drivers are exclusively made in C.
My First C Program
- #include<stdio.h>
- int main()
- {
- printf("Hello World");
- return 0;
- }
Output
Hello World
No comments:
Post a Comment
If you have any doubts please let me know