Monday, December 11, 2006

Stuck in infinite loop!

Recently I read on Dhirubhai ambani's Orbit theory, which impressed me very much.
(Yes, you guessed it right, this article about his theory).

Being a soft(ware) engineer, I would like to represent his theory using the following simple C code, and here you go.

while (level) {

if (condition) {
continue;
}

level = level->next;
}

everyone have their own definition of "level", and "condition". "orbit" is the definition given by Ambani for "level".