void
plusone(int *n)
{
*n += 1;
}
int
main(void)
int value = 41;
plusone(&value);
printf("%d\n", value);
text/plain
This content has been proxied by September (ba2dc).