You are here:

C/INCLUDE

Advertisement


Question
Hi,
What is the difference between the two header file declaration formats: #include <string.h> and
#include "endianio.h"? Do I need to put both types in the INCLUDE folder of my Turbo C compiler in order to use them in my code.
 Andres


Answer
If you put angle brackers (<stdio.h>) your compiler will search for the specified .h file in standard include path such as /usr/include.
If you put double quotes ("endianio.h") it will start looking in the current directory for the header file endianio.h.

-Narendra

C

All Answers


Answers by Expert:


Ask Experts

Volunteer


Narendra

Expertise

I can answer questions in C related to programming, data structures, pointers and file manipulation. I use Solaris for doing C code and if you have questions related to C programming on Solaris, I will be able to help better.

Experience

6.5

Organizations belong to
Sun Microsystems

Awards and Honors
Brain Bench Certified Expert C programmer.
Advanced System Software Certified

©2012 About.com, a part of The New York Times Company. All rights reserved.