Compilation g++

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
Use double quotes when including your own headers.

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