使用掺有速凝剂的普通硅酸盐水泥时,多层喷射间歇时间为15-30分钟,不加速凝剂时间歇时间为()。
参考答案:4小时左右
Having been robbed of economic importance, those states are not likely to count on very much in international political terms.
请补充函数fun(),该函数的功能是:把从主函数中输入的字符串str2接在字符串str1的后面。 例如:str1=“How do”,str2=“you do”,结果输出:How do you do 注意:部分源程序给出如下。 请勿改动主函数main和其他函数中的任何内容,仅在函数fun的横线上填入所编写的若干表达式或语句。 试题程序: #include<stdio.h> #include<conio.h> #define N 40 void fun(char *str1,char *str2) int i=0; char *p1=str1; char *p2=str2; while( 【1】 ) i++; for( ; 【2】 ;i++) *(p1+i)= 【3】 ; *(p1+i)=’\0’;main() char str1[N],str2[N); clrscr(); printf("*****Input the string str1 & str2*****\n"); printf("\nstr1:"); gets(str1); printf("\nstr2:"); gets(str2); printf("**The string str1 & str2**\n"); puts(str1); puts(str2); fun(str1,str2); printf("*****The new string *****\n"); puts(str1);