fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int x=10;
  6. int *ptr;
  7. ptr=&x;
  8. cout<<x;
  9. cout<<&x;
  10. cout<<ptr;
  11. return 0;
  12. }
Success #stdin #stdout 0s 4452KB
stdin
Standard input is empty
stdout
100x7ffcc52854740x7ffcc5285474