炉内砖层砌筑过程中,应严格错缝砌筑,干砌施工砖缝应用()填充。
参考答案:耐火颗粒(氧化铝粉)
给定程序中,函数fun的功能是:将形参s所指字符串中的所有数字字符顺序前移,其他字符顺序后移,处理后新字符串的首地址作为函数值返回。 请在程序的下划线处填入正确的内容并把下划线删除,使程序得出正确的结果。 注意:部分源程序给出如下。 不得增行或删行,也不得更改程序的结构! 试题程序: #include <stdio.h> #include <string.h> #include <stdlib.h< #include <ctype.h< char *fun(char *s)inti, j, k, n; char *p, *t; n=strlen(s)+1; t=(c har*)malloc (n*sizeof(char)); p=(char*)malloc(n*sizeof(char)); j=0; k=0; for(i=0; i<n; i++)if(isdigit(s[i])) /******************found*******************/ p[ (1) ]=s[i]; j++; else t[k]=s[i]; k++; /******************found*******************/ for(i=0; i< (2) ; i++)p[j+i]=t[i]; p[j+k]=0; /******************found*******************/ return (3) ; main() char s[80]; printf("Please input:"); scanf("%s", s); printf("\nThe result is: %s\n", fun(s));
NetscapeCommunicator-浏览器的主窗口包含()。
A、工具栏
B、菜单栏
C、组件条
D、状态栏
E、标题栏