C how to iterate through function int array of unknown size as argument

前端 未结 0 831
逝去的感伤
逝去的感伤 2021-02-09 02:23

I have the following code:

intlist* create_list(int *arr) {

    intlist* l = malloc(sizeof(intlist));

    while(*arr++) {
        l->sum += *arr; 
        //         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题