Chapter 4. The C Programming Language Objectives: at The End of The Lesson, The Student Will Be Able To
Chapter 4. The C Programming Language Objectives: at The End of The Lesson, The Student Will Be Able To
4.3 Applications of C
If C is such a strong and popular programming language, then you might be wondering
where C is applied. Below is one of the many list of the flexibility of C when it comes to its
application.
Some of the reasons on why we need to learn C programming are the following:
C is a free software. You can search the internet and download a copy of a C
programming language Integrated Development Environment (IDE). In this subject, the author
is using turbo C++ 3.2 IDE because of its simplicity in writing and running the program. The
compiler is also compatible with windows 10 and supports full screen mode. To get a copy of
this compiler, you can email me at edgar.uy@bisu.edu.ph or type developerinsider.co on your
search engine, follow the instructions and download a copy of it.
After installing and running the application, you will be diverted to the Turbo C IDE.
Compare your screen with the figure below. If your screen is the same as the figure displayed
below, then congratulations you have successfully installed a running Turbo C Compiler.
Before we start writing programs, it is very important that we know how to use our
compiler and navigate its environment. In this section we are going to learn the different menu
options with its corresponding function. The author will only give emphasis on the basic menu
options. As for the other menu options, it is your duty and obligation to read, understand,
explore and experiment.
On top of the turbo C IDE is the Main menu option. There are ten different
options.
File The File menu option handles the different file operations, manipulates
the directories, quit option and switch to DOS Shell.
Edit An option to create and edit a source file.
Search Search a specific file.
Run An option that runs your executable file.
Compile Converts the source file into and object and executable file.
Debug Track and manages errors
Project Specify what files are in the program and manages the project
Options An option that allows you to select compiler options, link, diagnostics
and define macros. This also records the Include output, library file
directories and load options from the configuration file.
Window Manipulates the window of the IDE.
Help Invokes the help option of the TC IDE.
To activate the file menu option, click on the F or press ALT + F. Once the
menu option is activated, a pop menu option will appear. To navigate the pop up
menu option, use the up or down arrow.
Now that we have learned the basic menu options required in writing and
running a program, we can now start to create, write and run a program in the TC
IDE.
References: