fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. if (!1) {
  5. puts("!1 is truthy");
  6. }
  7. else {
  8. puts("!1 is falsy");
  9. }
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 2160KB
stdin
Standard input is empty
stdout
!1 is falsy