document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. int x = 1; //My variable
  2.  
  3. cout << x << "\\n"; //Print the value of x
  4. cout << &x << "\\n"; //Print the address-of x
  5.  
  6. //The following line stops the application the user presses a button
  7. system("pause");
  8. return 0;
');