Get Started With C


To start using C, you need two things:
  • A text editor, like Notepad, to write C code
  • A compiler, like GCC, to translate the C code into a language that the computer will understand
There are many text editors and compilers to choose from. In this tutorial, we will use an IDE (see below).
   
 

Learning C At Shradha coding school


When learning C at Shradha coding school.com, you can use our "Try it Yourself" tool, which shows both the code and the result.
This will make it easier for you to understand every part as we move forward:

myfirstprogram.c

Code:
#include

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