+ 1
Can anyone help me out with the difference between #include <stdio.h> and #include"stdio.h" ?
2 Answers
+ 5
AFAIK Double quotes usually be used to include custom header files, stdio.h and the rest of standard headers filenames are wrapped in <> brackets.
+ 3
#include<> is for predefined header files
#include â â is for header files the programmer defines