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