题目内容

已有定义char*names[]={"Wang","Li","Chen"};语句“printf("Second%sFirst%s",names[1],names[0]);”的运行结果为。

查看答案
更多问题

设有变量定义:“inta[]={1,2,3,4,5,6},*p=a+2;”,则计算表达式*(p+2)*p[2]的值是。

若有语句int a[10], *p; p=a;,在程序中引用数组元素a[1]的形式还可以是: 、 、。

函数sstrcmp()的功能是对两个字符串进行比较。当s所指字符串与t所指字符串相等时,返回值为0;当s所指字符串大于t所指字符串时,返回值大于0;当s所指字符串小于t所指字符串时,返回值小于0。int sstrcmp( char *s, char *t){while (*s && *t && *s== ){ s++;t++;}return ;}

以下fun函数的功能:累加数组元素中的值,n为数组元素个数,累加的和放入x所指的存储单元中。fun(int b[], int n, int *x){int k,r=0;for (k=0;k

答案查题题库