Advertisement
Guest User

Untitled

a guest
Jan 19th, 2017
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. void f()
  2. {
  3. // do shit
  4. int t = x(5);
  5.  
  6. int x(int y)
  7. {
  8. int z = 0;
  9. //do shit
  10. f();
  11. return z;
  12. }
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement