Mega Code Archive

 
Categories / C++ / Development
 

An example that uses reinterpret_cast

#include <iostream> using namespace std; int main() {   int i;   char *p = "This is a string";   i = reinterpret_cast<int> (p); // cast pointer to integer   cout << i;   return 0; }