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.
Loading...
Related Quiz
- When you increment a pointer in C, it advances the pointer by the size of the type to which it points, which is known as ________.
- What happens when you perform pointer arithmetic on a pointer to a data type other than 'char'?
- What is the purpose of the feof function in file handling in C?
- You are working on an application that requires fast data retrieval times. What method of file access would be most suitable?
- In C++, if two overloaded functions have the same signature but differ in const qualification, it leads to ________.