fork download
  1. #include <stdio.h>
  2.  
  3. void func(int x) {
  4. if( x & 0x80000000 ) {} else {
  5. printf(">=\n");
  6. return;
  7. }
  8. printf("<\n");
  9. return;
  10. }
  11.  
  12. int main() {
  13. func( 5);
  14. func( 1);
  15. func( 0);
  16. func(-1);
  17. func(-5);
  18. return 0;
  19. }
Success #stdin #stdout 0.01s 1676KB
stdin
Standard input is empty
stdout
>=
>=
>=
<
<