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...
|
Re: diff between #include <fred.h> and #include "fred": msg#00001
|
Subject: |
Re: diff between #include <fred.h> and #include "fred" |
On Tuesday, Jan 4th 2005 at 09:43 -0500, quoth Robert P. J. Day:
=>
=> 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.
<> is used to access system include files. "" is used to access user
include files.
--
Time flies like the wind. Fruit flies like a banana. Stranger things have .0.
happened but none stranger than this. Does your driver's license say Organ ..0
Donor?Black holes are where God divided by zero. Listen to me! We are all- 000
individuals! What if this weren't a hypothetical question?
steveo at syslang.net
|
| |