【C语言入门自学笔记】第一课:Hello World!

时间:2021-11-13 22:29:52
  1. 编译环境

    我自己本身是Windows系统,入门学习不是开发什么大型软件和项目,所以选择了 Dev-Cpp 5.11 软件比较简洁,只有几十兆。
    【C语言入门自学笔记】第一课:Hello World!
    【C语言入门自学笔记】第一课:Hello World!

  2. Hello World!语句入门

    
    #include <stdio.h>
    
    //已 # 号开头的语句为预处理器指令
    //include 包含的意思
    //stdio.h 全称 standared input output header,标准输入输出的头文件
    int main()
    {
        printf("Hello Wrold!");
        return 0 ;
    }

    main() 函数作为程序入口,前面 int 表示 return 返回值的类型,如果没有返回值,则为 void。
    如你写void main (),主函数完了不用写return 语句,但是如果是int main ()或者是main (),你不写return 语句它就会有warning。
    【C语言入门自学笔记】第一课:Hello World!

  3. 注释
    单行注释:以 “//” 开头

    多行注释:以 “/*” 开头,“*/” 结尾