题目内容

有以下程序#include main(){int *p, x=100;p=&x; x=*p+10;printf("%d\n", x);}程序运行后的输出结果是

A. 110
B. 120
C. 100
D. 90

查看答案
更多问题

有以下程序#include void fun( int x, int y, int *z ){ *z = y-x; }main(){int a, b, c;fun(10,5,&a ); fun(7,a,&b ); fun(a,b,&c );printf("%d,%d,%d\n", a,b,c );}程序运行后的输出结果是

A. -5,-12,-7
B. 5,2,3
C. -5,-12,-17
D. 5,-2,-7

有以下程序#include void fun( int *s, int n1, int n2 ){ int i,j,t;i=n1; j=n2;while( i

A. 5 6 7 8 9 0 1 2 3 4
B. 0 9 8 7 6 5 4 3 2 1
C. 4 3 2 1 0 9 8 7 6 5
D. 0 9 8 7 6 5 1 2 3 4

若有说明和语句:char str[]="Hello", *p; p=str;,则此时*(p+5)中的值为

A. '\0'
B. 'o'
C. 'o'的地址
D. 不确定的值

有以下函数int fun( char *s, char *t ){ while(( *s )&&( *t ) && (*t++ == *s++ ) );return (*s-*t);}函数的功能是

A. 比较两个字符串的大小
B. 求字符串的长度
C. 将字符串s复制到字符串t中
D. 连接字符串s和字符串t

答案查题题库