A programming environment for c language

C Language

In this context, I am going to explain to you all about the environmental setup for the c program.

We will also have a look at which software we are using and what their purposes are.

Installation and environment setup for c program in windows operating system

Environment setup is a process of software installation, and this software is used for coding programs in c.

We need two things to start programming in C

  1. 1. Text editor-text editor is a software where we write our code

E.g.: notepad, notepad++

  1. C compiler: C compiler is used to compile our source code into machine-executable code.

GNU is one of the widely used compilers, which is also free.

With the above two software, we can start programming in c, but by making it simple, we need an integrated development environment(IDE) which is free software.

Following are some of the IDE’s

-Eclipse

-NetBeans

-Code blocks

-Visual studio code

Usually, IDE provides Editor, compiler, linker, and loader

  1. Loaders are part of the operating system. Provides a workspace for writing the program.
  2. Compilers perform the translations.
  3. 3. Linker combines the object file into the application file.

C language environment setup

  1. Download GCC compiler software.
  2. Install it in the system.
  3. Open a GCC command prompt and locate the c source file location by using the command.
  4. To compile the program, use .c extensions.

 Program structure in c language

C program is divided into six sections they are

documentation

-link

-definition

– Global declaration

-main () function

-subprograms

Leave a Reply

Your email address will not be published. Required fields are marked *