fork download
  1. #include <stdio.h>
  2. #include <stdbool.h>
  3. int main () {
  4. bool itsnewyear = 0;
  5. if (itsnewyear) {
  6. printf("it is new year");
  7. }
  8. else{
  9. ("it is not new year");
  10. }
  11. return 0;
  12. }
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
Standard output is empty