mirror of
https://github.com/Noratrieb/libuwuc.git
synced 2026-01-14 19:55:07 +01:00
8 lines
No EOL
124 B
C
8 lines
No EOL
124 B
C
#include <stdlib.h>
|
|
|
|
int main(void) {
|
|
char *alloc = (char *)malloc(10);
|
|
*alloc = 1;
|
|
*(alloc + 9) = 2;
|
|
free(alloc);
|
|
} |