💾 Archived View for thrig.me › software › assembly › slab-of-code › simple.c captured on 2024-02-05 at 11:36:29.

View Raw

More Information

-=-=-=-=-=-=-

#include <stdio.h>

void
plusone(int *n)
{
	*n += 1;
}

int
main(void)
{
	int value = 41;
	plusone(&value);
	printf("%d\n", value);
}