S
spibou
Here's some advice about how to programme in C:
(From
http://www.uni-muenster.de/ZIV/Mitarbeiter/EberhardSturm/PL1andC.html/)
Or perhaps timidness is not the problem.
(From
http://www.uni-muenster.de/ZIV/Mitarbeiter/EberhardSturm/PL1andC.html/)
First I want to present a list of hints to programmers who occasionally need to program in C:
* No computations in control statements!
* No increment ++ and no decrement -- operators!
* No assignments in expressions!
* No comma operator!
* No question-mark operator!
* Don't use char for numbers!
* Don't expect rules of mathematics!
* Don't lookup precedence rules, use parentheses!
Or perhaps timidness is not the problem.