vc++ 里面的趣事

来源:互联网 发布:初级程序员考证 编辑:程序博客网 时间:2024/04/30 09:32

先看下面几行代码:

一:

int main(int argc, char* argv[])
{
 int i = -1;
 unsigned int j = 1;
 
 if(i>j)
  printf("huche");
 getchar();
 return 0;
}

输出结果为:huche

 

二: