它是流动的C代码中的内存泄漏吗?
#include <stdlib.h> int *a; int main() { a = malloc(sizeof(int)*10); return 0; }
c memory-leaks
c ×1
memory-leaks ×1