Linux系统中的文件包含问题。
假设在文件夹myh中,有my_class.h,my_student.h,my_grade.h;
my_grade.h
#include "myh/my_class.h"
#include "myh/my_student.h"
这样怎么使编译的时候没有问题。
我知道的一种做法是把 #include "myh/my_class.h"改为#include "my_class.h";
还有没有其他方法?请各位高手指点。 大写的i,不是小写的L
[解决办法]
gcc -Wall -l ./myh my.c - o my_prog