What is the difference between #include <header file> and #include “header file”?
Answer / Vinod Hembram
"The main difference between #include <header file> and #include "header file" in C lies in the search path for the header file. When you use "double quotes", the preprocessor looks for the header file in the current directory and system include directories. On the other hand, when using angle brackets (< >), it searches only within the system include directories. Using double quotes allows you to provide a more specific path to your header files if they are not located in the standard locations. "
| Is This Answer Correct ? | 0 Yes | 0 No |
Design a program using an array that lists even numbers and odd numbers separately from the 12 numbers supplied by a user.
What is extern c used for?
What is the importance of c in your views?
How do you prevent buffer overflows in C?
what are the 10 different models of writing an addition program in C language?
Why dont c comments nest?
Explain the importance and use of each component of this string: Foo.Bar, Version=2.0.205.0, Culture=neutral, PublicKeyToken=593777ae2d274679d
How can I call fortran?
write a program to compare 2 numbers without using logical operators?
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
what is the difference between definition and declaration? give me some examples.
What is a char c?