C語言,計算字符串長度,不用strcat

#include <stdio.h> main() { char a[100]; int i=0; gets(a); while(a[i]!='\0') i++; printf("%d",i); }
相關文章
相關標籤/搜索