C++ examples for Preprocessor:Directive
Uses two header files.
#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; }