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 Rhinorhino 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
Joined
Mar 13, 2001
Messages
96
Location
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;
 
You can add the path to your project settings as well
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top