fork download
  1. #include <iostream>
  2.  
  3. int main() {
  4.  
  5. int x[10];
  6. int *y = x;
  7.  
  8. std::cout << &x[0] << ", " << x << ", " << y << std::endl;
  9. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
0xbfa83e08, 0xbfa83e08, 0xbfa83e08