|
Subject:
|
about the professional c++ book download code
|
|
Posted By:
|
SeemaChivate
|
Post Date:
|
7/28/2006 4:25:02 AM
|
i have down loaded the code for the "professional c++ " book. now when i test the code i come to prob:
there are some .h files written with 1 .cpp file. as .cpp has the statement of #include <XXXX.h> , where should i copy paste the .h file to run successfully.????
Seema
|
|
Reply By:
|
klep
|
Reply Date:
|
9/3/2006 2:15:10 AM
|
I'm not sure that I understand your question. In general, files that are #included with double quotes (#include "foo.h") should be in the same directory as the source file. Files that are included with angle brackets (#include <iostream>") are standard headers that are installed by your compiler.
---- Scott J. Kleper Author, "Professional C++" (Wrox, 2005)
|