[填空題] 以下程序用以刪除字符串所有的空格,請?zhí)羁铡? #include <stdio.h> main() char s[100]= "Our teac
2021-07-20
[填空題] 以下程序用以刪除字符串所有的空格,請?zhí)羁铡?/p>
#include <stdio.h>
main()
char s[100]= "Our teacher teach C language!");int i,j;
for(i=j=0;s[i]!=’’;i++)
if(s[i]!=’’)s[j]=s[i];j++;
s[j]=______;
printf("%s",s);
正確答案:0或’’或s[i+1]
詞條內(nèi)容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學(xué)等領(lǐng)域),建議您咨詢相關(guān)領(lǐng)域?qū)I(yè)人士。