As I read through "The C Programming Language" (2nd Edition by Brian Kernighan & Dennis Ritchie), I'm posting my solutions to some of the exercises I find interesting. I'm not going to post all of my solutions. If you want to see ALL of the solutions, check out the book "The C Answer Book" (by Clovis Tondo & Scott Gimpel).
For most of my programs I'm using Eclipse with the CDT plugin and I'm compiling using the GNU tool-chain in Centos inside a VMWare Guest.
This is just a basic histogram program. The maximum frequency is 30 just to keep it simple (I mean, jeeze, how many words are longer than 30 characters?). I know this is pretty elementary but after 16 years of not thinking algorithmically, it did stretch my brain a bit.
This exercise wasn't especially interesting except that it's the first C code I've written in about 16 years!