问题:
两个相等的字符串用strcmp函数操作,返回结果不等于0.
类似代码:
char A[6] = "123456";
char B[6] = "123456";
if(strcmp(A,B)!=0)
next;
····
现象:仿真的时候,程序老是运行至 next处。