include preprocessor.


The include preprocessor will add source code to your existing source. This is used to include header files that contain function declarations. For example:

	#include <stdio.h>
	main()
	printf("hi peeps");
	}
The printf function declaration is held in stdio.h

There are two ways of defining the include files location.


Top Master Index Keywords Functions


Martin Leslie