On Mar 20, 1:03 pm, June Lee <iiu...@yahoo.c omwrote:
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 =)
Comment