Introduction to C Programming

C is a Low / middle-level language computer programming language developed in 1972 by Dennis Ritchie at the Bell Telephone Laboratories for use with the Unix operating system. C is a structured programming language, which means that it allows you to develop programs using well-defined control structures  and provides modularity (breaking the task into multiple sub tasks that are simple enough to understand and to reuse). C is often called a Low / middle-level language because it combines the best elements of low-level or machine language with high-level languages.

C’s ability to communicate directly with hardware makes it a powerful choice for system programmers. In fact, popular operating systems such as Unix and Linux are written entirely in C. Additionally, even compilers and interpreters for other languages such as FORTRAN, Pascal, and BASIC are written in C. It is also used to develop any kind of application, including complex business ones.

How to run a simple c program

  1. Install Turbo c/c++ in computer , Or Eclipse Editor Etc.
  2. Open c:\tc\bin\tc.exe . or Eclipse ( https://www.eclipse.org/downloads/ )
  3. Select File->new to open a new file
  4. Type the program on editor
  5. Compile
  6. Execute

 

error: Content is protected !!