Difference between #include and #include "stdio.h"

Many of you confused with this two method of specifying the include files. This article will teach you what the difference between these two is.

#include <stdio.h>

This method of specifying is used to include the standard header files.
The standard header files are in "include" folder. Files which are in "include" folder are specified by #include <file.h>
files should be in "include" folder.

#include "stdio.h"

This method of specifying is used to include the user defined files. On other hand,the file should be in current folder.

Related Posts