1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <string.h> 4 void deblank(char str[]); 5 int main() 6 { 7 char str[100] ; 8 memset(str,0,100); 9 printf("please input the string str:"); 10 gets(str); 11 deblank(str); 12 puts(str); 13 system("pause"); 14 return 0; 15 } 16 void deblank(char str[]) 17 { 18 int i = 0; 19 int j = 0; 20 while(str[i] != '