Can anyone help me out with the difference between #include <stdio.h> and #include"stdio.h" ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Can anyone help me out with the difference between #include <stdio.h> and #include"stdio.h" ?

11th May 2019, 8:32 AM
Seema Tamang
Seema Tamang - avatar
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.
11th May 2019, 8:45 AM
Ipang
+ 3
#include<> is for predefined header files #include ” ” is for header files the programmer defines
11th May 2019, 8:50 AM
Bahhaⵣ
Bahhaⵣ - avatar