Possible Duplicate:
What is the difference between #include <filename> and #include “filename”?
I've hit a bit of a problem in my C learning, I had a quick search of the questions on this site and couldn't find an answer to this question. It's probably a bit stupid, but here goes.
I've been following some c tutorials and throughout the book all includes have been done like this:
#include <stdio.h>
#include <string.h> etc. etc.
All of a sudden however, they've dropped this bomb shell:
#include <stdio.h>
#include "structSize.h"
With absolutely no explanation as to why "..."
was used, I'm completely dumbfounded. Could anyone perhaps provide an explanation as to what is the difference between <...>
and "..."
and when to use each one.
Thanks for the help.
Regards,
Mike