輸入用 scanf("%[^\n]",list); 來輸入包含空格的字串
計算總字元數(含空格):
int a=0; while (list[a]!='\0'){ a++; }
先輸出 list 字串,然後換行用 for 迴圈輸出 a 個 ~ 就可以了