Uses two header files. - C++ Preprocessor

C++ examples for Preprocessor:Directive

Description

Uses two header files.

Demo Code

#include <iostream>
using namespace std;
#include <string.h>
int main()//from   w  w w.jav a2s .  c  om
{
   char message[20];
   strcpy(message, "This is fun!");
   cout << message;
   return 0;
}

Result


Related Tutorials