//
// Created by 冲哥 on 2023/02/23.
//
#include <stdio.h>
int add(int a, int b){
return a + b;
}
test.c
//
// Created by 冲哥 on 2023/02/23.
//
#include &#34;test.h&#34;
int main() {
int a = 10;
int b = 20;
int c = 0;
c = add(a, b);
printf(&#34;c:%d\n&#34;,c);
return 0;
}
在当前目录下打开cmd,在命令行使用gcc -v test.c命令查看程序的编译过程, 这里使用的gcc版本信息如下:
gcc version 12.2.0 (x86_64-win32-seh-rev0, Built by MinGW-W64 project)
使用该命令前先确保自己的电脑上已经装有MinGW,并且已经配置好了环境变量。否则执行命令时会报错。
//
// Created by 冲哥 on 2023/02/23.
//
#include &#34;test.h&#34;
#include &#34;aaa.h&#34;
int main() {
int a = 10;
int b = 20;
int c = 0;
c = add(a, b);
printf(&#34;c:%d\n&#34;,c);
return 0;
}
在当前目录下打开cmd,在命令行使用gcc -v test.c命令查看程序的编译过程,由于当前路径和默认路径下都没有aaa.h文件,所以编译时报错。
//
// Created by 冲哥 on 2023/02/23.
//
#include &#34;test.h&#34;
#include <aaa.h>
int main() {
int a = 10;
int b = 20;
int c = 0;
c = add(a, b);
printf(&#34;c:%d\n&#34;);
return 0;
}
再将D:/SOFTWARE/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/include路径下把刚创建的aaa.h文件剪切到D:\cyyzwsq路径下,继续编译,由于默认路径下没有aaa.h文件,所以编译时直接报错,即使当前路径下有aaa.h文件。