通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
下面程序的运行结果是( )。
#include<stdio.h> #include<string.h> main() {char*s1="abDuj"; char*s2="ABdUG"; int t; t=strcmp(s1,s2); printf("%d",t); }