请读程序:<br class="markdown_return">#include &lt;stdio.h><br class=

分类: C语言开发工程师 发布时间: 2023-11-03 11:13 浏览量: 0

请读程序:
#include <stdio.h>
#include <string.h>
Main()
{
Char *s1="AbCdEf", *s2="aB";
S1++; s2++;
Printf("%d\n",strcmp(s1,s2) );
}
上面程序的输出结果是______。

A.正数

B.负数

C.零

D.不确定的值

正确答案是A