Main Page: Difference between revisions

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