How to get started C Language

How to get started C Language

C Programming language codes are written with help of test editor like Notepad and some high feature test editors are available to write C programs but test never detect the run error in code. The modern test editor helps to programmers to write program code in right syntax, best editors help programmer to auto complete line code of programs and correct the spelling errors during coding of C Programming language.

Install best Test Editor for C programming first and then to install need GCC compiler to run programs. the test editors and compilers available to download from Internet and can be used on computer without internet.

The C language test editors with gcc compiler are known as IDE (Integrated Development Environment) , there are many IDE available to donwload free and some are paid version but most of programmers use free IDE software like Code blocks and DEV C++ which is build with GCC Compiler and don’t need install compiler separately .

Get Start in C language

Step 1

Download Code Blocks mingw-setup.exe

Step 2

Go to File Menu and click New under the new sub menu empty file or short cut Ctrl + shift+N

Step 3

write c program code ;

#include<stdio.h>

int main()

{

printf(” Hello Word”);

return 0;

}

Step 4 Click on Build Button short cut Ctrl +9

Now this will ask to save the file and save this file which create .exe file

Step 5 click on Run

Output – Hello World

Leave a comment