how to learn c language (part1)

  • 7 years ago
C language is very powerful and famous programming language in the world. Everyone wants to become a perfect programmer of C language. I will help you to become a best programmer. If you want to learn C programming. Firstly you should know that every programming language has its their own rules, its also called syntax. All programs are made under these rules.
Tips To Remember

1) Firstly include header file like (standard input out header file).
2) Every program starts with main( ) function.
3) All operations or coding under {.......} braces.
4) Every statement end with semilon ; .
5) Program save with .c extension.


Note -> f2(save), alt+f9(compile), f9(make exe),
Ctrl+f9(run program), alt+f5(see result),
alt+f3(close program).

Let's start with our first simple/basic program.....

#include
main( )
{
printf("Hello Everybody");
}

Recommended