ACCU Home page ACCU Conference Page
Search Contact us ACCU at Flickr ACCU at GitHib ACCU at Facebook ACCU at Linked-in ACCU at Twitter Skip Navigation

Search in Book Reviews

The ACCU passes on review copies of computer books to its members for them to review. The result is a large, high quality collection of book reviews by programmers, for programmers. Currently there are 1949 reviews in the database and more every month.
Search is a simple string search in either book title or book author. The full text search is a search of the text of the review.
    View all alphabetically
Title:
The C Puzzle Book
Author:
Alan Feuer
ISBN:
0 201 60461 2
Publisher:
Addison-Wesley
Pages:
175pp
Price:
$19.95
Reviewer:
Joe McCool
Subject:
advanced c
Appeared in:
11-5
My copy of Feuer's book now sits on my shelves alongside The C Programming Language by K&R and The C Answer Book by Tondo and Gimpel. The format of all three books is the same. The material covered is similar, although Feuer's coverage is less dense and perhaps less esoteric.

However, this openness of text should not lead one to conclude that the reading is easy, or that the material is trivial. Far from it. Even apparently simple

printf
statements had me thinking for quite a while. The use of pre-processor macros early in the text:

#define PRINT(format, x) printf(#x " = %" #format "\n", x)
increased my difficulty.

I found the material on operator precedence somewhat trying. I am one of those programmers that believe that the use of parentheses leaves the precedence rules less important and the code easier to read. Still, there are those who enjoy the challenge.

Enjoying the challenge is what this book is all about and I really do recommend it highly, a lot can be learnt from it.

I cannot comment on the accuracy of the code, or its conformity to standards. The author himself admits that

'The puzzles should not be read as examples of good coding; indeed some of the code is atrocious'. His emphasis is on the intellectual exercises. But I can say that any I ran through my Borland compiler executed as expected.

A good buy.