--- "johnmatthews2000" <jm5...@...> wrote: > > Doesn't look too bad. Some points: > > 1. You define constant strings using (for example): > > const char * const filename = "rebase_stats.txt"; > > No need to complicate things with a pointer - just use: > > const char filename[] = "rebase_stats.txt";
The following is why I code this way: http://www.izecksohn.com/pedro/c/*%20versus%20%5B%5D/test.c I learned Assembly for the Z80 and for the 8086 before I learned C .
