Linking two .cpp and a .h files

后端 未结 8 882
小蘑菇
小蘑菇 2021-02-02 01:00

I\'m doing an exercise (from the third chapter of Thinking in C++) but I have a problem linking two .cpp files.

This is the exercise:

Create a h

8条回答
  •  囚心锁ツ
    2021-02-02 01:52

    gcc -c func_ex.cpp -o func_ex.o
    gcc func_ex_main.cpp func_ex.o -o func_ex_main
    

提交回复
热议问题