[ create a new paste ] login | about

Link: http://codepad.org/LoMu9QAh    [ raw code | output | fork ]

C++, pasted on Apr 15:
1
2
3
4
5
6
7
8
9
10
11
12
#include <iostream>

int main()
{
  int i = 0;
  std::cout << &i << std::endl;
  {
    int i = 0;
    std::cout << &i << std::endl;
  }
  return 0;
}


Output:
1
2
0xbf7079ac
0xbf7079a8


Create a new paste based on this one


Comments: