Use preprocessor directive called #include. - C Preprocessor

C examples for Preprocessor:Preprocessor Operators

Description

Use preprocessor directive called #include.

Demo Code

#include <stdio.h> 
int main()// ww  w  . j  a  v  a 2  s. c  om
{ 
   printf("\nHaving fun with preprocessor directives\n"); 
}

Result


Related Tutorials