Changes

Jump to navigation Jump to search
327 bytes added ,  21:12, 16 January 2009
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;
 +
}

Navigation menu