填空题
以下程序的输出结果是______。
# include
main()
char *s1,*s2,m;
s1=s2=(char*)malloc(sizeof(char));
*s1=15;
*s2=20;
m=*s1+*s2;
printf("%d\n",m);
【参考答案】
40
点击查看答案
<上一题
目录
下一题>
热门
试题
填空题
当运行以下程序时,输入abcd,程序的输出结果是:______。insert(char str[]) int i;i=strlen(str);while(i>0) str[2*i]=str[i];str[2*i-1]=’*’;i--;printf( %s n ,str);main() char str[40]; scanf( %s ,str);insert(str);
点击查看答案
填空题
在结构化分析使用的数据流图(DFD)中,利用______对其中的图形元素进行确切解释。
点击查看答案
相关试题
以下程序运行后的输出结果是______。...
以下程序运行后的输出结果是______。...
以下程序中函数huiwen的功能是检查一个字符...