Including a header file from another directory

前端 未结 4 1524
别那么骄傲
别那么骄傲 2021-02-03 18:01

I have a main directory A with two sub directories B and C.

Directory B contains a header file structures.c

4条回答
  •  清酒与你
    2021-02-03 18:33

    write

    #include "../b/structure.h"
    

    in place of

    #include 
    

    then go in directory in c & compile your main.c with

    gcc main.c
    

提交回复
热议问题