字符串加空格
#include <stdio.h> int main() { char a[101]; gets(a); for(int i=0;i<strlen(a);i++) printf("%c ",a[i]); printf("\n"); return 0; }