fork download
  1. /* Helloプログラム */
  2.  
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7. int b;
  8. int absent =1 ;
  9. int test = 83 ;
  10.  
  11. b = (( absent <= 3 ) && ( test >= 60 ));
  12.  
  13. printf("%d\n" , b );
  14. }
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
1