• 2022-06-03
    已知“int *p=malloc(100);”,要释放p所指向的动态内存,正确的语句为()。
    A: Afree(p);
    B: Bfree p;
    C: Cfree(*p);
    D: Dfree;