30考慮下列的C語言程式:
【丁子】評論
strcmp()函数:比較兩個字串返回值 < 0,表示str1 < str2返回值 > 0,表示str2 < str1返回值 = 0,表示str1 = str2Asc("X") = 88Asc("a") = 97"XYZ" < "abc" → 輸出 -1