Teller (of Penn and Teller fame) used to double- and triple-stack magic tricks for the pure sake of making it appear as though he was doing something totally mundane - like placing a ball under a cup. He'd do it by a string of crazy palmings, misdirections, and slight-of-hand... he was, in a way, obfuscating his obfuscations.
On occasion, I've had the need to scratch the magically mundane itch: write something out the long way that I would usually get for free. In the following case (already part of a fibonacci thread,) I had a little fun with implementing a call stack and program counter for myself:
int s[999999];
int fib(int i)
{
_1: int t=0; s[t++] = i; s[t++] = 0; s[t] = 0;
_10: if (s[t-2] < 2) { s[t-2] = 1; t-=3; }
_20: if (t < 0) return s[0];
_30: if (s[t] == 1) goto _60;
_40: if (s[t] == 2) goto _70;
_50: s[t++]++; s[t++]=s[t-3]-1; s[t++]=0; s[t]=0; goto _10;
_60: s[t-1]=s[t+1]; s[t++]++; s[t++]=s[t-3]-2; s[t++]=0; s[t]=0; goto _10;
_70: s[t-2]=s[t-1]+s[t+1]; t-=3; goto _20;
}
So the question is really an open call for submissions of your most gratuitous treatments of the simplest concepts in programming. Do your worst.