Can some one help get started on an assignment involving pointers
Create a class called Pointer that has only 1 data member, namely a char pointer. With this class, define 3 functions constuctor, destructor, and display function. The constructor accepts and saves 3 passed in variable of type char. This must be done dynamically by allocating memory for the 3 passed in variable. The display function must display, th the screen, the contents of the memory using pointer notation. Do this in reverse order in which you save the data. Implement the class using the proper c++ syntax..
Proovide Driver function to invoke the display function



LinkBack URL
About LinkBacks
isplay()


