Difference between revisions of "Main Page"

From DSiBrew
Jump to navigation Jump to search
Line 11: Line 11:
  
 
  #include <stdio.h>
 
  #include <stdio.h>
 
+
 
  int main(void)
 
  int main(void)
 
  {
 
  {

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