Topic: Steps Involved in C-Programming D. Aravind Kumar
Topic: Steps Involved in C-Programming D. Aravind Kumar
STEPS INVOLVED IN C-
PROGRAMMING
D. ARAVIND
ABOUT ‘C’ PROGRAMMING
§The C programming language is a low-level (close to the
computer) computer programminglanguage that was
developed to do system programming for the operating
system UNIX and is an imperativeprogramming language. C
was developed in the early 1970s by KenThompson and
DennisRitchie at BellLabs. It is a procedurallanguage, which
means that people can write their programs as a series of
step-by-step instructions. C is a compiledlanguage. This
means that the computer doesn't have to build the
application every time it is opened.
§
STEP’S IN PROGRAM
STEP 1: CREATING SOURCE
CODE
§ Source code is a file with C programming instructions in a high-level language. To create
source code, we use any text editor to write the program instructions. The instructions
written in the source code must follow the C programming language rules. The following
steps are used to create a source code file in Windows OS…
§ Click on the Start button
§ Select Run
§ Type cmd and press Enter
§ Type cd c:\TC\bin in the command prompt and press Enter
§ Type TC press Enter
§ Click on File -> New in C Editor window
§ Type the program
§ Save it as FileName.c (Use shortcut key F2 to save)
§
STEP 2: COMPILE SOURCE
CODE (ALT+F9)
§ The compilation is the process of converting high-level language
instructions into low-level language instructions. We use the shortcut
key Alt + F9 to compile a C program in Turbo C.
§ Whenever we press Alt + F9, the source file is going to be submitted to
the Compiler. On receiving a source file, the compiler first checks for the
Errors. If there are any Errors then compiler returns List of Errors, if there
are no errors then the source code is converted into object code and
stores it as a file with .obj extension. Then the object code is given to
the Linker. The Linker combines both the object code and
specified header file code and generates an Executable file with
a .exe extension
STEP 3: EXECUTING/RUNNING
EXECUTABLE FILE (CTRL+F9)
After completing compilation successfully, an executable file is created with
a .exe extension. The processor can understand this .exe file content so
that it can perform the task specified in the source file.
§
§
§