【简答题】下列给定程序中,函数fun的功能是:计算一个带头结点的单向链表中各结点的数据域中数值之和,结果作为函数值返回。请选择在下画线处填入正确的语句,使程序得出正确的结果。#include #include #define N 8typedef struct list{ int data; struct list *next;} SLIST;SLIST *creatlist(int...
【单选题】下列给定程序中,函数fun的功能是:计算一个带头结点的单向链表中各结点的数据域中数值之和,结果作为函数值返回。 请选择在下画线处填入正确的语句,使程序得出正确的结果。 #include #include #define N 8 typedef struct list { int data; struct list *next; } SLIST; SLIST *creatlist...
【简答题】下列给定程序中,函数fun的功能是:计算一个带头结点的单向链表中各结点的数据域中数值之和,结果作为函数值返回。请选择在下画线处填入正确的语句,使程序得出正确的结果。#include #include #define N 8typedef struct list{ int data; struct list *next;} SLIST;SLIST *creatlist(int...