My C language learning process to record, for everyone to learn to communicate, suitable for C language beginners to learn, hope to be helpful to everyone.
Recommended Learning Tutorial: "C language Programming" rectification
Recommended Learning Video: C language Tutorial Hao Bin (link)
After I finished, I wrote down My learning experience, you can see in my blog (link)
Hello World, Chinese meaning: Hello, worlds. The first program in the World is Hello Worlds, created by Brian Kernighan.
Most programmers learn a language, and the first program they write is helloworld!
C-language version Hello world
# Include<stdio.h>int Main (void) //int is the return value type, main is the function name, void is the parameter {printf ("Hello world!\n"); Output Hello world! and wrap return 0; 0 is the return value}
Program output:
Let's go into the learning World of C language!
(If you have any questions, you can ask in the next place, I will try to answer for everyone.) )
Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.
Introduction to C language Programming--helloworld!