C语言内存分配及释放
释放内存后,要把指针置为NULL,防止内存泄漏
#include <stdio.h>
#include <stdlib.h>
int main(){
int n;
scanf("%d",&
2020-01-15