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