ReePrime
how to learn c language (part1)

Hosted by Dailymotion. For legal issues report at the Copyright Center, report us on DMC, or use the Instant Removal tool.

how to learn c language (part1)

G
Guru G Online

9 Views • Mar 14, 2017

Description

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");
}