// The M13_main.cpp file

#include <iostream>

extern "C" int __stdcall COPYSTR( char*, char* );

int main()
{
    char destination[ 100 ] = { 0 };
    char* source = "Hello!";

    COPYSTR( destination, source );
    std::cout << destination;
    return 0;
}