/* Dynamic Memory Demonstration program */

#include <iostream.h>
#include <lvpstring.h>

using namespace std;	// October 5, 2001

int main()
{
	lvpstring *p;   // Declare a pointer to a string
	p = new lvpstring;  // Allocate memory for the string
	(*p) = "Sandburg";  // Store data at the location pointed to by p
	cout << (*p) << endl; // Display data at location pointed to by p
	delete p;  // Deallocate the memory pointed to by p 
	return(0);
}

