 C is the famous programming language designed to develop system application program.
 It is known as the starting of every programming language all the basics of a program language starts from C language.  C is known as general purpose procedural programming language.
 Developed by M. Dennis Ritchie at the Bell laboratories in the year of 1972.  C is known as high level language because it has the power of a lower level language and easy syntax like high level language.
 Easy to learn  It’s a structured programming language
 Can handle low level programs  Compiled code can be used in different computers
 C is a robust language  C is a highly portable language means once compiled; the code can be run in any computer.
 Compiler is a computer program that transforms the human written language into machine level language.
 In general words computer takes the code written by you and converts it into binary code.
 #include<stdio.h> #include<conio.h> void Main() clrscr(); { Printf(“my first C program”); }
 #- Prerocessor of program  Include-Include is a keyword
 Stdio.h-Standard input/output header file  Conio.h-Console input/output header file
 Void-is a keyword that collects the garbage value  Main()- main() identifies starting of the program execution
 Clrscr()-To clear the console screen  {, }-Group all statements together  Printf()-It is a function to print the output on screen.
 Data type of C language mostly divided into 5 major types  int, char, float, double, void
int char float void double
 Int –Used to identify an integer value  Char- Used to identify a character  Float- Used to identify floating point type  Double- Used to identify floating point type  Void- denotes to type with garbage value
 Variable is a stored data memory allocated to use it in future and we can change the value too.
 Syntax- type variable name;  Ex- int a, b, c;
 Int-Data type  A, b, c variables
 Int-Data type  A, b, c variables  ;-Identifies the end of statement.
 This is a simple introduction to C basic that will be elaborated in further classes. If you want to be one of the programming professional then please visit our website for further details about C demo classes and new session.
introduction to c programming language

introduction to c programming language

  • 2.
     C isthe famous programming language designed to develop system application program.
  • 3.
     It isknown as the starting of every programming language all the basics of a program language starts from C language.  C is known as general purpose procedural programming language.
  • 4.
     Developed byM. Dennis Ritchie at the Bell laboratories in the year of 1972.  C is known as high level language because it has the power of a lower level language and easy syntax like high level language.
  • 5.
     Easy tolearn  It’s a structured programming language
  • 6.
     Can handlelow level programs  Compiled code can be used in different computers
  • 7.
     C isa robust language  C is a highly portable language means once compiled; the code can be run in any computer.
  • 8.
     Compiler isa computer program that transforms the human written language into machine level language.
  • 9.
     In generalwords computer takes the code written by you and converts it into binary code.
  • 10.
  • 11.
     #- Prerocessorof program  Include-Include is a keyword
  • 12.
     Stdio.h-Standard input/outputheader file  Conio.h-Console input/output header file
  • 13.
     Void-is akeyword that collects the garbage value  Main()- main() identifies starting of the program execution
  • 14.
     Clrscr()-To clearthe console screen  {, }-Group all statements together  Printf()-It is a function to print the output on screen.
  • 15.
     Data typeof C language mostly divided into 5 major types  int, char, float, double, void
  • 16.
  • 17.
     Int –Usedto identify an integer value  Char- Used to identify a character  Float- Used to identify floating point type  Double- Used to identify floating point type  Void- denotes to type with garbage value
  • 18.
     Variable isa stored data memory allocated to use it in future and we can change the value too.
  • 19.
     Syntax- typevariable name;  Ex- int a, b, c;
  • 20.
     Int-Data type A, b, c variables
  • 21.
     Int-Data type A, b, c variables  ;-Identifies the end of statement.
  • 22.
     This isa simple introduction to C basic that will be elaborated in further classes. If you want to be one of the programming professional then please visit our website for further details about C demo classes and new session.