ARTHEESWARI . S
2 min readMar 19, 2022

--

Hello world

We will recommend you to use Turbo C or Turbo C++ IDE, which is the oldest IDE for C programming. It is freely available over the internet and is good for a beginner.

Step 1: Open turbo C IDE(Integrated Development Environment), click on File and then click on New

Step 2: Write a Hello World program that we created in the previous article — C Hello World program.

Step 3:This will open the save file dialog box.

Pressing F2 key on the keyboard will also open the save file dialog box of the Turbo C.

Step 4:

Save file dialog box will have a textbox to enter the name of the C file.

Step 5:Compile saved program

To compile the saved program press Alt+F9 on keyboard.

When compilation completes a dialog box will open which will show number of errors, warnings and lines in the program.

Step 6:Run compiled program

Click on Run or press Ctrl + F9 to run the code. Yes, C programs are first compiled to generate the object code and then that object code is Run.

Step 7:Output is here.

--

--