Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

fatal error C1083

Status
Not open for further replies.

youssef

Programmer
Mar 13, 2001
96
BE
I create a project where I include a file.h in another folder in the same project.

when I used #include "myfile.h"
the compiler don't find the file.

How can I do for find it ?

Best Regards
 
You can change the project setting to include also the path of your header file located, therefore you can include your header file like #include <myfile.h> .

Alternatively, you can give the full path or relative path to your header file like: #include &quot;FULL_PATH_TO_YOUR_DIRECTORY\myfile.h&quot;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top