prob with C++

scuttle

New Member
Hye,

I have C++ but during compilation the error message i get is :could not open header file.
I checked the C++ folder and all the header files are there.Please help me out.
 
If it is not a system library i.e. you did not enclose it between <>, u used "" then the reason could be that you have not put the header file into the same file as the project, another solution would be to copy the exact location of the header file ex: "c:\\documents\header.h".
Hope that helps
 
houssam_ballout said:
If it is not a system library i.e. you did not enclose it between <>, u used "" then the reason could be that you have not put the header file into the same file as the project, another solution would be to copy the exact location of the header file ex: "c:\\documents\header.h".
Hope that helps

sorry houssam_ballout it does not seem to work or i dont understand you completely could you be a bit more descriptive.

by the way scuttle is my id.i created it after being unable to recall my password.

admins may delete that acc. if they wish to.sorry
 
Well u have to put the location of the header file in detail... i.e. #include "C:\detailed\location\header.h" rather than just "header" if is is not a header file found in the system library such as iostream...or you can put "header.h" but at the same time copy the header file into the project folder.
 
Back
Top