Guest User

Untitled

a guest
Apr 23rd, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.09 KB | None | 0 0
  1. void foo(int x) {
  2. x = 2;
  3. }
  4.  
  5. int main() {
  6. int x = 1;
  7. foo(x);
  8. printf("x: %d\n", x);
  9. }
Add Comment
Please, Sign In to add comment