size;

  1. A

    Destructor problem in C++

    Hi Friends. I am Having some problems in running below program.. Please Help me.. #include<iostream> using namespace std; class mystring { char* storage; int size; public: mystring() { storage=0;size=0; } mystring(char* s) { size=strlen(s)...
Top Bottom