tdtrung.tech
/me
« Back
Idioms
Oct 21, 2022
til
Push value onto stack
*p++ = val;
Pop top of stack into val
val = *--p;
tdtrung.tech