C ENVIRONMENT SETUP

                     C ENVIRONMENT  SETUP

 In order to start compiling and executing c programs, you need the following two software tools available on your computer, (a) Text Editor and (b) The C Compiler.


C is often called a "Middle Level" programming language. because of its capability to access the system's low level functions. Most high-level languages (e.g. Fort-ran) provides everything the programmer might want to do already built into the language. A low level language (e.g. assembler) provides nothing other than access to the machines basic instruction set

a) Text Editor :

This will be used to type your program. Examples of few a editors include Windows Notepad, OS Edit command, Brief, Epsilon, EMACS, and vim or vi.
The name and version of text editors can vary on different operating systems. For example, Notepad will be used on Windows, and vim or vi can be used on windows as well as on Linux or UNIX.
The files you create with your editor are called the source files and they contain the program source codes. The source files for C programs are typically named with the extension ".c".

Comments

Popular posts from this blog

C LANGUAGE

How to do a clean install of mac OS

Compiling and Running Your First C Program