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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

#include files

Status
Not open for further replies.

TheCrappyProgrammer

Programmer
Sep 17, 2001
41
0
0
US
What is the difference between #include &quot;test.h&quot; and #include <test.h>?
 
#include <test.h> will search the file in the lib directory whereas #include &quot;test.h&quot; will search the file in the Application Working directory.
 
As long as we're semi- on the subject, what is the older (say... 4.0) version of the header file <string>?

Not <string.h>. Just plain <string>.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top