Code Complete has pretty good bang per page, especially if you are beginner. http://www.amazon.co.uk/Code-Complete-Practical-Handbook-Con...
This is the most disappointing programming book I have ever had a misfortune to buy. If you ever read any UML / Rational Software books - this is right up there in terms of sucking all joy out of programming, putting a blue collar and tie on you and then strangling you to death with soul-less trivialization of the software creation process. Horrible, horrible book. If you like K&R books, stay the hell away from Code…
if (!b) { a();} else { b();}
change to
if(b) {b();} else { a(); }