Compilation g++

Mar 20, 2019 at 3:13pm
Hello, I'm a beginner and I have two files one .cpp and the other .h,
How I compile the whole?

Because if I try g++ AccountTest.cpp throws an error message "there's no exist the file Account.h in #include <Account.h>"
Thanks
Mar 20, 2019 at 3:14pm
Use double quotes when including your own headers.

 
#include "Account.h" 
Topic archived. No new replies allowed.