What is the difference between #include "filename" and #include in C?

  • #include "filename" is for standard library files.
  • #include "filename" is for user-defined files.
  • #include is for user-defined files.
  • They are interchangeable and have no difference.
In C, #include "filename" is used for user-defined header files, and #include is used for standard library header files.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *