cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
Compilation g++
Compilation g++
Mar 20, 2019 at 3:13pm UTC
psosmol
(71)
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 UTC
Peter87
(11239)
Use double quotes when including your own headers.
#include "Account.h"
Topic archived. No new replies allowed.