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