1 /************************************************************************* 2 > File Name: 02_Replace_Blank.c 3 > Author: Juntaran 4 > Mail: JuntaranMail@gmail.com 5 > Created Time: 2016年08月24日 星期三 01时28分33秒 6 ************************************************************************/ 7 8 #include <stdio.h> 9 10 void ReplaceBlank(char* str) 11 { 12 if (str==NULL) 13 { 14 return; 15 } 16 17 int blankCount = 0; 18 int alphaCount = 0; 19 int i = 0; 20 while (str[i] != '