I have the following code:
intlist* create_list(int *arr) { intlist* l = malloc(sizeof(intlist)); while(*arr++) { l->sum += *arr; //