| <<< M13_COPYSTR.ASM | Index | Missing MSVCR80.DLL or MSVCR80D.DLL >>> |
// 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;
}
| <<< M13_COPYSTR.ASM | Index | Missing MSVCR80.DLL or MSVCR80D.DLL >>> |