填空题
下列程序段的运行结果是______。
char str口="ABCD",*p=str;
printf("%d\n",*(p+3));
【参考答案】
68
热门
试题
填空题
下列程序的输出结果是______。 #include<stdio.h> int t(int x,int y,int cp,int dp) {cp=x*x+y*y; 如:dp=x*-y*y; } main() {int a=1,b=8,c=7,d=9; t(a,b,c,D) ; printf( %d%d n ,c,D) ; }