Advertisement
fellpz

Var globais e locais

Apr 6th, 2017
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.20 KB | None | 0 0
  1. #include <stdio.h>
  2. void func();
  3.  
  4. int i = 10;
  5.  
  6. int main()
  7. {
  8. int i=20;
  9. func();
  10. printf("i= %d ", i);
  11. {
  12. int i = 30;
  13. func();
  14. printf("i= %d ", i);
  15. }
  16. }
  17.  
  18. void func()
  19. {
  20. printf("i = %d ", i);
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement