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