Guest User

Untitled

a guest
Aug 10th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. static variable in vc [closed]
  2. #ifdef TRUE
  3. static int a;
  4. static int a = 1;
  5. #else
  6. static int a = 1;
  7. static int a;
  8. #endif
  9.  
  10. int main (void)
  11. {
  12. printf("%dn", a);
  13. return 0;
  14. }
  15.  
  16. #ifdef TRUE
  17. int a;
  18. int a = 1;
  19. #else
  20. int a = 1;
  21. int a;
  22. #endif
  23.  
  24. #ifdef TRUE
  25. static int a = 1;
  26. #else
  27. static int a = 1;
  28. #endif
Add Comment
Please, Sign In to add comment