Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. int x = 1;
  2. int f(int y)
  3. {
  4. return x ;
  5. }
  6.  
  7. int main() {
  8. x=2;
  9. printf("%d", f(0));
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement