Advertisement

Include Files <> = " " ?

Started by May 28, 2001 11:43 PM
1 comment, last by Prozak 23 years, 8 months ago
Hi all. This is a quickie, in VC++6, when declaring include files: #include is there an actual diference between #incluse and #incluse "iostream.h" ?? or is it just a choice? Thanks, Hugo Ferreira lotsjunk@hotmail.com http://unitek3000.tripod.com
If you mean:

#include &ltiostream.h>
or
#include "iostream.h"

the " means look in the current directory for the file. < and > mean look in the standard directories for it.
Advertisement
By the way, the "standard directories" he is talking about are determined in the VC++ Tools->Options (Directories tab).

Todd M. Gillissie
Todd M. GillissieGilligames

This topic is closed to new replies.

Advertisement