2021年8月30日

摘要: cmd : gcc -o hello hello.c gcc -o hello hello.c -v (-v 查看 详细编译信息) 程序的编译 需要经过如下4个步骤 : 1 预处理 1.1查找头文件,在包含路径,系统路径查找,头文件的包含,include "xx.h" 与 include <xx.h 阅读全文
posted @ 2021-08-30 23:01 brian90 阅读(30) 评论(0) 推荐(0)
摘要: 代码:************ #include <stdio.h> int main(){ printf("Hello World"); return 0;} 1. stdio.h 头文件的作用, 函数的声明,传参,编译时提供校验; 2. xx.c 文件的作用,函数的定义,具体的实现方法; 3. 阅读全文
posted @ 2021-08-30 22:15 brian90 阅读(124) 评论(0) 推荐(0)

导航