Embed Notice
HTML Code
Corresponding Notice
- Embed this notice
Pleroma-tan (kirby@lab.nyanide.com)'s status on Sunday, 31-Dec-2023 19:26:12 JSTPleroma-tan int
main(void)
{
int *n = malloc(sizeof(int));
*n = 4;
*n *= 2;
*n -= 3;
*n += 4;
return 0;
} // this shit leaks memory