fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. std::string txt = "0xDEAD";
  7. uintptr_t x = strtoul(txt.c_str(), 0, 16);
  8. cout << x << endl;
  9. return 0;
  10. }
Success #stdin #stdout 0s 5536KB
stdin
Standard input is empty
stdout
57005