问答详情
源自:3-10 强者争霸

本人解答供参考

#include <stdio.h>
#include <stdlib.h>
struct Score{
    int math;
} typedef score;
Score * getScore(){
    score * arr = (Score *)malloc(20 * sizeof(Score));
    for(int i=0;i<20;i++){
        arr[i].math = i;
    }
    return arr;
}
int main(){
    score * arr = getScore();
    for(int i=0;i<20;i++){
        printf("%d\n",arr[i].math);
    }
    return 0;
}


提问者:weixin_慕标4401382 2022-06-02 17:44

个回答

  • 慕粉_pp
    2022-06-29 17:13:37

    malloc的空间后面需要free掉