☰ Topics



× Home Introduction Structure of program Variables and keywords Constants Data Types Operators Statements Functions Storage Classes Array Structure Pointer Union Strings Header Files

Welcome to C Programming

| Learn Basic of C Programming language |

INTRODUCTION:

C Language is a general purpose and structured programming language developed by 'Dennis Ritchie' at AT & T's Bell Laboratories in 1972 in USA. It is also called as 'Procedure oriented programming language.'

The C laguage has following numerous features as:
Facts about C
Execution of Program

Create a Program

Compile a program

Link Program

Execute Program.

  1. Create a program:
  2. Any Editior like Notepad, vscode etc.. to create a C program. This file should be saved as '.c' extension only.

  3. Compile program:
  4. The next step is to compile the program. The code is compiled by using compiler converts executable code to binary code i.e. Object code

  5. Link program to a Library:
  6. the object code linked to library that are needed for execution. The link is used to link the program with libraries. It creates a file with '.exe' extension

  7. Execution of Program:
  8. The final executable file is then run by dos command prompt or by any other software.

Next Topic ➤