Choosing A Webhost:
A web hosting service is a type of Internet hosting service that allows individuals and organizations to provide their own website accessible via the World Wide Web. Web hosts are companies that provide space on a server they own for use by their clients as well as providing Internet connectivity, typically in a data center. Web hosts can also provide data center space and connectivity to the Internet for servers they do not own to be located in their data center, called colocation. more...
|
diff between #include <fred.h> and #include "fred.h": msg#00000
|
Subject: |
diff between #include <fred.h> and #include "fred.h" |
with respect to the gcc preprocessor, is it correct to say that,
unless i use some of the preprocessor include options to change how
include directives are processed, the only difference between the
following two statements:
#include <fred.h>
#include "fred.h"
is that the latter will first search the current directory? with that
exception, will both forms then search identically based on system
directories and "-I" options?
i can also see how i can change this with options like "-I-", and
-nostdinc and -include, but i wanted to verify what happens with none
of these other options.
thanks.
rday
|
| |