fork download
  1. #include <iostream>
  2.  
  3. int main()
  4. {
  5. char c = '\0';
  6. char* pc = &c;
  7. std::cout << pc << std::endl;
  8. std::cout << static_cast<void*>(pc) << std::endl;
  9. std::cin.get();
  10. }
Success #stdin #stdout 0.02s 2684KB
stdin
Standard input is empty
stdout
0xbfbf5b33