123456789101112131415
#include <iostream> using namespace std; #include <cstring> // for strlen(), & strcpy(); struct stringy { char * str; int ct; }; int main() { .... ... delete [] beany.str; return 0; }
new
....