横肋与钢筋轴线的夹角β应不小于()。
A.10°
B.15°
C.30°
D.45º
参考答案:D
短语按照层次可以分为()和()。
以下程序用以删除字符串中所有的空格,请填空。 #include <stdio.h> main() char s[100]="our teacher teach c language!";int i,j; for(i=j=0;s[i]!=’\0’;i++) if(s[i]! =’’)s[j]=s[i];j++; s[j]=______; printf("%s\n",s);