已知“inta[5]={2,3,4,5,6};int*p=a+2;”,表达式*p*a[3]的值是。
查看答案
已有定义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 ;}