A-A+ 下面程序#include stdio.h #include string.h mai 2022-08-14 13:09:59 问答库 阅读 203 次 问题详情 下面程序#include "stdio.h" #include "string.h" main(){char *s1="AbDeG";char *s2="AbdEg";s1+=2; s2+=2;printf"%dn",strcmp(s1,s2));}的运行结果是()A. 正数B. 负数C. 零D. 不确定的值 参考答案 标准答案:B