IOCCC image by Matt Zucker

The International Obfuscated C Code Contest

2004/hoyle - Most functional output

Author:

To build:

    make

To use:

    ./hoyle point ...

Try:

    ./try.sh

Judges’ remarks:

The obfuscation functions at several levels. Note the clever use of use of #defines. The #define do(if,else), for example, is delightful. The code itself contains a bunch of curves designed to throw you off axis. :-)

Author’s remarks:

This application graphs polynomials on a standard Cartesian coordinate system. Polynomials of the form ax^0 + bx^1 + cx^2 + ... are graphed by passing the coefficients a, b, c, etc. as double precision arguments. It allows up to 8 parameters (thus up to x^7).

Points of interest:

For example, to graph y = x^2:

    ./hoyle 0 0 1

Note that:

    ./hoyle 0 0 2

will produce the same graph, since the y-axis is auto scaling.

Inventory for 2004/hoyle

Primary files

Secondary files


Jump to: top