Friday, 14 August 2020

C Introduction

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.

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

  1. #include<stdio.h>
  2. int main()
  3. {
  4. printf("Hello World");
  5. return 0;
  6. }

Output

  1.  Hello World


No comments:

Post a Comment

If you have any doubts please let me know