Revision as of 21:12, 16 January 2009 by Mha (talk | contribs)

We think that you should install yourself a nice new shiny t-shirt!

We imported most of your wiibrew accounts, so that you should seemlessly be able to log on here and document your findings.

File:Dscat.jpg

... and probably eat a lot of candy. so that you will want to play more.

ToC:

#include <stdio.h>
int main(void)
{
   int *pointer, penis;      /* initialize the penis and pointer */
   penis = 20;               /* set penis length to 20 cm */
   pointer = &penis;         /* assign the pointer to point to the penis */
   printf("%d", *pointer);   /* display the penis length */
   return 0;
}