Using Base + Offset to grab 4 chars as an int[code] cc = (char*)jj; cout << "Base + 50: " << *cc << endl; // a cc = mem + 51; cout << ...
Using Base + Offset to grab 4 chars as an intI have a char array called 'mem' sized to 100 Bytes. I'm trying to use "base address + offset" to ac...
Use Pointers and Casting to insert/retrieve char(s) and int(s) from char arrayThanks! This is a big help. I'm going to review this to make sure I understand everything that is go...
Use Pointers and Casting to insert/retrieve char(s) and int(s) from char arrayI'm at a complete loss here on how to do this. I have a char array of 100 bytes and I'm trying to us...
Appending a Vector to a VectorI'm trying to add the value of b, which in this case is '0100', to *this, which is the value of '010...
This user does not accept Private Messages