With your golfing hat on you can probably see that the "wow" example can be reduced to:
Code:
#include <stdio.h>

int main()
{
int i=7827319;

printf("%d=%s\n",i,&i);
return 0;
}