Main Page: Difference between revisions

From DSiBrew
Jump to navigation Jump to search
Muzer (talk | contribs)
No edit summary
No edit summary
Line 9: Line 9:
ToC:
ToC:
{{Special:AllPages}}
{{Special:AllPages}}
#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;
}

Revision as of 22:12, 16 January 2009

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;
}