The GNU C Programming Tutorial - Questions 22
Node:Questions 22,
Previous:Final words on style,
Up:Style
Questions 22
- Where should the name of a program and the opening bracket of
a function definition begin?
- In what human language should comments be written for the
GNU Project? Why?
- Which is better as the name of a variable:
plotArea
,
PlotArea
, or plot_area
? Why?
- Why is it important to initialize a variable near where it is
used in a long function?
- Give an example of a case where using local variables is impractical.