💾 Archived View for thrig.me › software › assembly › slab-of-code › simple.c captured on 2024-03-21 at 16:01:27.
⬅️ Previous capture (2024-02-05)
-=-=-=-=-=-=-
#include <stdio.h> void plusone(int *n) { *n += 1; } int main(void) { int value = 41; plusone(&value); printf("%d\n", value); }