Questions 22 to 25 are based on the passage you have just heard.
Actions speak louder than words.
B. Think twice before taking action.
C. Translate their words into action.
D. Take action before it gets too late.
查看答案
有以下程序void fun(char *c,int d){*c=*c+1;d=d+1;printf("%c,%c,",*c,d);}int main(){char a='A',b='a';fun(&b,a);printf("%c,%c\n",a,b);return 0;}程序运行后的输出结果是__________。
写出下面程序的运行结果。int fun(char *s){char *p=s;while(*p)p++;return (p-s);}int main(){char *a="abcdef";printf("%d\n",fun(a));return 0;}
以下程序的输出结果是:_______________void fun ( int *x){ printf("%d\n",++*x);}int main(){int a=25;fun (&a);}
若有定义: char ch; 定义指针p,并使其指向变量ch的初始化语句是_____。(必须使用一条语句)