Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Zortech C++ Language Reference - include_files http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
                              Include_Files

   The  directive #include followed by a filename in angle brackets  or
   double  quotes  is used to include other source files in  the  current
   compilation.  These files are treated as if the code they  contain  is
   part  of  the  current compilation, for  instance,  inline  and  macro
   definitions  in the included file will remain current through  to  the
   end of the main file. There are two methods for locating include files
   which will be used depending on the form of the include statement.

   #include "filename"
   Filename  is searched for in the default directory. This  is  normally
   used for user include files.

   #include <filename>
   Filename is searched for in the compiler's INCLUDE directory. This  is
   normally used for system include files.


Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson