> Online tutorial : include
Showing posts with label include. Show all posts
Showing posts with label include. Show all posts

#include

  #include (directive)

Treats text in the file specified by filename as if it appeared in the
current file.

 Syntax:

   #include "filename"
   #include <filename>

 #include "filename" searches the source path first, then the include path.

 #include <filename> does not search the source directory.

 Examples:
  #include <stdio.h>
  #include "main.h"