I *think* ( it's been awhile) that #include "iostream.h" will include the "iostream.h" file in your project's directory, whereas #include <iostream.h> || #include <iostream> will include the one in your IDE's include path's. I know for sure that quotes cause it to check the current directory first, but I can't remember if it will search the include paths too.
note that <iostream> would be the appropriate C++ syntax.
Regards,
Meredith Shaebanyan
|