{{keywords>wiki library source code example reference}}
====== #include ======
#include /* including standard library */
//#include /* uncomment this for Windows */
#include "myheader.h"
=== description ===
include a file into your c sourcecode
===== C Example 1 =====
#include /* including standard library */
//#include /* uncomment this for Windows */
int main(void){
printf("the answer to life the universe and everything is %d \n", 42 );
}
==== output example 1 ====
user@host:~$ ./include
the answer to life the universe and everything is 42