Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. // Global declarations and function prototypes
  2. int x, y;
  3. void someFunction();
  4.  
  5. int main()
  6. {
  7. someFunction();
  8. // w and x are deleted here
  9. }
  10.  
  11. void someFunction()
  12. {
  13. int w, x;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement