開發平台(Platform): (Ex: Win10, Linux, ...)
Linux mint
編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出)
g++
或http://www.compileonline.com/compile_c_online.php
問題(Question):
我的strcmp跑出來的結果怪怪的20,一開始我以為是overflow害的,
結果我把空間變大後答案是18,我不太懂為甚麼...
如果直接輸入字串,會是正常的答案。
餵入的資料(Input):
struct {char str1[10], str2[10];} s;
strcpy(s.str1, "yahoo");
strcpy(s.str2, "google");
strcat(s.str1, strcat(s.str2, "adobe"));
預期的正確結果(Expected Output):
1
錯誤結果(Wrong Output):
20
程式碼(Code):(請善用置底文網頁, 記得排版,禁止使用圖檔)
http://codepad.org/KF2FCnr8
# include<stdio.h>
# include<string.h>
int test04(void){
struct {char str1[10], str2[10];} s;
strcpy(s.str1, "yahoo");
strcpy(s.str2, "google");
strcat(s.str1, strcat(s.str2, "adobe"));
return strcmp(s.str1, s.str2);
}
int main()
{
printf("%d\n", test04()); /* Problem 2-4 */
return 0;
}
補充說明(Supplement):
隔壁棚Grad-ProbAsk 程式設計的北科大考生們正在水深火熱中,懇請大大們協助<(_ _)>