// M13_main.cpp
// @topic W140310 Lab M13 demo, dynamic memory allocation
// @brief main driver program

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

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