CSI,
I promised to look up how to cast an interger to a pointer. Here is
the code:
#include <iostream>
int main(){
int *p;
// p = (int *)55; // c-style
p = reinterpret_cast<int *>(55); // c++11 style
}
Neither should be used for anything we are studying in CSI or CSII.
Thanks,
--
Mikhail