#include <iostream>
#include <string>
using namespace std;
int main() {
string *ptr = new string("fff");
string * ptr1 = new string("ffffff");
cout << ptr << endl << ptr1 << endl;
}
how are both ptr and ptr1 different in their representation, does *ptr mean the same thing as *[space]ptr