logo - 题百科
找答案
首页
【简答题】
下列给定程序中,函数fun的功能是:计算一个带头结点的单向链表中各结点的数据域中数值之和,结果作为函数值返回。 请选择在下画线处填入正确的语句,使程序得出正确的结果。 #include #include #define N 8 typedef struct list { int data; struct list *next; } SLIST; SLIST *creatlist(int *); void outlist(SLIST *); int fun( SLIST *h) { SLIST *p; int s=0; p=h->next; while(p) { s+= p->data; p=p->next; } return s; } main() { SLIST *head; int a[N]={12,87,45,32,91,16,20,48}; head=creatlist(a); outlist(head); /**********found**********/ printf("\nsum=%d\n", fun(______)); } SLIST *creatlist(int a[]) { SLIST *h,*p,*q; int i; h=p=(SLIST *)malloc(sizeof(SLIST)); for(i=0; i data=a[i]; p->next=q; p=q; } p->next=0; return h; } void outlist(SLIST *h) { SLIST *p; p=h->next; if (p==NULL) printf("The list is NULL!\n"); else { printf("\nHead "); do { printf("->%d", p->data); p=p->next; } while(p!=NULL); printf("->End\n"); } } A. next B. head C. 0 D. data
参考答案:
登录免费查看参考答案
参考解析:
登录免费查看参考解析
知识点:
登录免费查看知识点
答题技巧:
登录免费查看答题技巧
被用于:
暂无被用于
..
刷刷题刷刷变学霸
相关题目:
【单选题】发扬社会主义新风尚,带头实践()和社会主义荣辱观。
【单选题】ROUND(6.165,2)的函数值是(  )。
【简答题】电流在数值上等于____________________________________和_________________________的比值。用公式表示为_________________________。
【单选题】对于二次函数y=ax2+bx+c(a≠0),我们把使函数值等于0的实数x叫做这个函数的零点,则二次函数y=x2-mx+m-2(m为实数)的零点的个数是(  )
【判断题】变量类型程序数据在执行时,指针跳转到主程序执行后,该变量的数值会丢失。
【单选题】下列函数值的类型是( )。 fun(double x) { float y; y=3*x-4; return y; }
【简答题】下列给定程序中,函数fun的功能是:计算一个带头结点的单向链表中各结点的数据域中数值之和,结果作为函数值返回。请选择在下画线处填入正确的语句,使程序得出正确的结果。#include #include #define N 8typedef struct list{ int data; struct list *next;} SLIST;SLIST *creatlist(int...
【单选题】若某季度季节指数值为98%,则说明该季度的销售比全年季度平均销售量()。
【简答题】下面函数string_cmp( )用于实现函数strcmp( )的功能,将两个字符串s和t进行比较,然后将两个字符串中第一个不相同字符的ASCII码值之差作为函数值返回。请将程序补充完整。 int string_cmp(char s[ ], char t[ ]) { int i=0; while(s[i]!='\0'&&t[i]!='\0') { if( (1) ) break; (2) ;...
【判断题】定点数是指小数点固定在符号位与最高数值位间的数。 ()
.
刷刷题刷刷变学霸