 
                            ...
| Code Block | 
|---|
| 
enum {buff_max = 50};
  char buff[buff_max];
 | 
In all the rules' code samples that declare functions, make sure that parameters that are not changed in the function are marked const.
- done - alexv 4/22
...
I've looked at some of the C rules and recommendations, and here are my
 recommendations  for copying them across to C++.
...