Difference between #include and #include "file"

by Vijayaprasad 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"

Tagged in:

797
like
0
dislike
0
mail
flag

You must LOGIN to add comments