解釋本comment後,錯誤:沒有這樣的文件或目錄 - Visual C
/***************** arrayImpl.c **************/
#include"list/list.h"
#if defined(ARRAY)
....
#endif
我./Computing/list/arrayImpl.c
寫#include"list/list.h"
使用Computing/testList.c
程序,here所示測試Computing/list
ADT。
但list/list.h
不能由list/arrayImpl.c
發現,如下圖所示,
PC ~/code_practice/Computing
$ gcc -Wall -g -DARRAY ./list/*.c testList.c -o testList
./list/arrayImpl.c:3:22: fatal error: list/list.h: No such file or directory
compilation terminated.
./list/linkedListImpl.c:3:22: fatal error: list/list.h: No such file or directory
compilation terminated.
我如何理解這個錯誤,以下是評論後?我誤解了嗎?
@ Jean-FrançoisFabre我用'arrayImpl.c'編輯了我的查詢代碼 – overexchange