Top "Header-files" questions

Header files are used in some programming languages to hold source code as a single copy that may be reused in multiple source files.

What is the difference between #include <filename> and #include "filename"?

In the C and C++ programming languages, what is the difference between using angle brackets and using quotes in an …

c++ c include header-files c-preprocessor
Why have header files and .cpp files?

Why does C++ have header files and .cpp files?

c++ header-files
Where is the <conio.h> header file on Linux? Why can't I find <conio.h>?

Possible Duplicate: How to implement getch() function of C in Linux? What is the equivalent Linux version of the conio.…

c linux gcc header-files
How do I include the string header?

I'm trying to learn about strings, but different sources tell my to include different headers. Some say to use <…

c++ string header-files
.c vs .cc vs. .cpp vs .hpp vs .h vs .cxx

Possible Duplicates: *.h or *.hpp for your class definitions Correct C++ code file extension? .cc vs .cpp I used to …

c++ c filenames header-files naming
How can I create C header files

I want to be able to create a collection of functions in a header file that I could #include in …

c function header-files modular
C++, how to declare a struct in a header file

I've been trying to include a structure called "student" in a student.h file, but I'm not quite sure how …

c++ struct include header header-files
error C2039: 'string' : is not a member of 'std', header file problem

I am having problems with a class I am writing. I have split the class into a .h file that …

c++ class visual-studio-2010 header-files
Where to find the complete definition of off_t type?

I am sending file from client to server using TCP. To mark the end of the file I like to …

c sockets networking types header-files
How to make g++ search for header files in a specific directory?

I have a project (a library) that is subdivided into a few directories with code in them. I'd like to …

directory g++ header-files include-path