// M13_main.cpp

#include <iostream>
#include "M13_NEWARRAY.h"

int main()
{
    char const* source = "Hello!\n";
    char* destination = COPYNEW( source );
    std::cout << destination;
    return 0;
}