Softfixx c language First Program in C and IDE Installation

First Program in C and IDE Installation

| | 0 Comment| 12:26 pm

First Program in C and IDE Installation

Well, Good you come on this new step as you completed first day. In this part you will learn First Program in C and IDE Installation. So keep learning and enjoy this simple and best way.

If you wants to Learn with us online via Zoom or any other platform in live classes you can contact us on WhatsApp or telegrams +918755084148 frequently. Even we help you instantly to grow up.

First Program in C and IDE Installation

In this article we cover important information about c language IDE and also write first program in c language: ” Hello World”. Let’s make a heading plan on which we will discuss in this post one by one:

  • Whats you need to run C language Code ?
  • What do you mean by IDE ?
  • Which IDE is best for learning C language
  • C language first program
First Program in C and IDE Installation

Whats you need to run C language Code ?

As you know while we do coding work we need two things one of them is ” Text Editor” and another one is Compiler to run the code.

Text Editor help us to write code like Notepad etc. While Compiler like GCC translate this code into a language that understands our computer

What do you mean by IDE

IDE full form is : Integrated Development Environment. This is a complete program that give us full functionality to edit, write the code, also compile it to give output.

Popular IDE’s are Visual Studio, Blocks, Eclipse etc. The good thing is that all are free you can use and learn.

Which IDE is best for learning C language

Well, this is a big and best question, many of them are using Visual studio or Raplit, but we recommend you to use online compiler like Online Complier of Programiz web.

Few reasons to choose this:

  1. Here you need to write code by your self because all other IDE’s give you references.
  2. When you write your code by self its increase your working abilities and make you strong.
  3. As you face many problems then you solve these and feel better.

C language first program

This is your first program just write it by your self in online compiler and run it. Check it running or not this is your work for today :

#include <stdio.h>

int main() {
printf(“Hello World!”);
return 0;
}

Result : 

Hello World!

Leave a Reply

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