| Learn Basic of C Programming language |
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.'
Any Editior like Notepad, vscode etc.. to create a C program. This file should be saved as '.c' extension only.
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
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
The final executable file is then run by dos command prompt or by any other software.