Mandelbrot, Baby!
A journey into the heart of fractal madness.
// C++ code for rendering Mandelbrot Set #include <stdio.h>
#include <math.h>

void mandelbrot(float x, float y, int maxIter, int width, int height) {
...
}
Click here for more algorithmic art.