summaryrefslogblamecommitdiff
path: root/tests/exec/address2.cpp
blob: 75c2c4fc9c73f788a7afa901a7ef3545dd464dd1 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                   
#include <iostream>

void f(int *y) {
  *y = 42;
}

int main() {
  int x = 41;
  std::cout << "x = " << x << "\n";
  f(&x);
  std::cout << "x = " << x << "\n";
}