单项选择题

下列程序的输出结果是______。
#include <string.h>
main()
char*str1="abcde",*str2="abcd";
strl++;str2++;
printf("%d\n",strcmp(str1,str2));

A.正数
B.负数
C.零
D.不确定的值