Subset of C language with tree interpreter and bytecode compiler + VM.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 

13 строки
230 B

// multiple-free
#include <stdlib.h>
#include <stdio.h>
#include <assert.h>
int main() {
int *ptr = malloc(sizeof(*ptr));
assert(ptr != 0);
free(ptr); printf("%p\n", ptr);
free(ptr); printf("%p\n", ptr);
return 0;
}