关系运算符

关系运算符 - 图1

例:

  1. int a=10;
  2. int b=4;
  3. printf("%d \n",a>b);
  4. printf("%d \n",a==b);
  5. /*结果为
  6. 1
  7. 0
  8. */