首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 操作系统 > UNIXLINUX >

Linux系统中的文件包含有关问题

2013-10-16 
Linux系统中的文件包含问题。假设在文件夹myh中,有my_class.h,my_student.h,my_grade.hmy_grade.h#include

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

热点排行