The most important thing is to write decent comments.

Things like "variable declaration" and "name of cat" are not the type of thing you want to be commenting. This is simply because anyone with half a clue about C will know that a char array called "name" is an array for holding a name!

Document why your code does things, and if complexity requires it, document the how. Don't document the blindingly obvious.