Connecting Tech Pros Worldwide Help | Site Map

include header

  #1  
Old March 20th, 2008, 02:05 AM
June Lee
Guest
 
Posts: n/a
when include headers in C++ what's different when using

< or " " like the following?


#include "ne_session.h"
#include <ne_uri.h>
  #2  
Old March 20th, 2008, 02:25 AM
Christopher
Guest
 
Posts: n/a

re: include header


On Mar 19, 9:03 pm, June Lee <iiu...@yahoo.comwrote:
Quote:
when include headers in C++ what's different when using
>
< or " " like the following?
>
#include "ne_session.h"
#include <ne_uri.h>
First hit on Google when searching for: include "" vs include <>
http://www.thescripts.com/forum/thread138207.html

Tryed Google advanced search to limit to this NG, but couldnt get it
to work :(

At any rate it has been asked before, Google is your friend.
  #3  
Old March 20th, 2008, 02:55 AM
Alexander Dong Back Kim
Guest
 
Posts: n/a

re: include header


On Mar 20, 1:03 pm, June Lee <iiu...@yahoo.comwrote:
Quote:
when include headers in C++ what's different when using
>
< or " " like the following?
>
#include "ne_session.h"
#include <ne_uri.h>
#include "..." means the header file is in the same directory,
where #include <...means the header file is in the directory that
the compiler uses.

My explanation is not covering everything about the differences
between two. As Christopher recommended you, do some googling, you
will find more than millions of tutorials =)

cheers,
Alex
Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem with include header file chat answers 9 May 25th, 2006 05:35 PM
Ignore include header files with Splint Henry Fr?d?ric answers 9 November 14th, 2005 08:34 PM
Include header file problem !! on ANSI - C alan answers 6 November 13th, 2005 05:37 PM
Where to include header files / A question of style? Exits Funnel answers 18 July 23rd, 2005 02:02 AM
include/header questions Marcus answers 2 July 17th, 2005 01:13 PM