开发平台(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 程式设计的北科大考生们正在水深火热中,恳请大大们协助<(_ _)>