设有变量定义:“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
判断输入的字符串是否是“回文”,(顺读和倒读都一样的字符串称为“回文”,如level)。#include "stdio.h"#include "string.h"int main(void){char s[80], *t1, *t2;int m;;m=strlen(s);t1=s;t2=;while(t1