C判断一段字符串中的英文字母,数字空格和其他字符个数 #include <stdio.h> int zimu(char str[]){ int i,num=0; char j; j=str[0]; fo...