Hello,
I just wrote a couple lines of code to see how the memory of vector variable is and I cant seems to make it show in the watch window.
I tried to put both bufPtr and &buf in the watch window and non of them shows me the real pointer to the memory location.Code:vector<BYTE> buf; buf.push_back('b'); buf.push_back('1'); buf.push_back('2'); buf.push_back('3'); vector<BYTE> * bufPtr = &buf;
Thanks for any help![]()