Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. ##Problems with C
  2.  
  3. ###Useless storage classifiers
  4.  
  5. 1. `auto` is useless.
  6. 2. `extern` is useless.
  7. 3. `register` is useless.
  8. 4. `typedef` is too easy to overuse.
  9.  
  10. ##Global declarations
  11.  
  12. All globals must be initialized.
  13.  
  14. ```
  15. static int a = <constant expression>;
  16. s32 b = <constant expression>;
  17. float c = 0;
  18. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement