Tuesday, 12 March 2019

C language o level note

C language-
  1. C language is a general purpose  programming language.
  2. High and low level language.
  3. C is a general-purpose procedural, imperative computer programming language developed in 1972 by Dennis M. Ritchie at Bell Telephone Laboratories to develop the UNIX operation system.
  4. C is the most widely used computer language.It keeps fluctuating at number one scale of popularity along with Java programming language, which is also equally popular and most widely used among modern software programmers.

  1. Example of program c language.
    #include<stdio.h>
    #include<conio.h>
     Void main()
        { 
           int a,b,c;
           clrscr();
           Printf("enter two no");
           Scanf("%d %d" ,&a,&b);
           c=a+b;
           Printf("sum of no",c);
           getch();
               }