Include Files <> = " " ?
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
May 28, 2001 11:53 PM
If you mean:
#include <iostream.h>
or
#include "iostream.h"
the " means look in the current directory for the file. < and > mean look in the standard directories for it.
#include <iostream.h>
or
#include "iostream.h"
the " means look in the current directory for the file. < and > mean look in the standard directories for it.
This topic is closed to new replies.
Advertisement
Popular Topics
Advertisement
Recommended Tutorials
Advertisement