Difference between #include and #include "file"
by Vijayaprasad[ Edit ] 2010-01-28 10:39:50
#include <file>
This will refer the given file in the standard input and output directory.
Ex: #include <stdio.h>
#include "file"
This will first refers the given file in the current directory if this not found it will refers in the standard input and output directory.
Ex: #include "ownhead.h"