如果每組測資都只有一個"字元"就沒有問題
但是範例測資中 world 是一個字串
所以在宣告變數時應該宣告成"一維陣列" ( char a[80]; )
讀入測資時用 scanf("%s", &a )
輸出也是用 %s
就是型態問題囉