fork download
  1. #include <stdio.h>.
  2. #include <stdlib.h>
  3. #include <stdbool.h>
  4. int main () {
  5. bool isgooning = true;
  6. char *name = "zabe";
  7. if (isgooning) {
  8. printf("%s is gooning", name);
  9. }
  10. else {
  11. printf("%s is about to gooning", name);
  12. }
  13. }
Success #stdin #stdout 0.01s 5292KB
stdin
Standard input is empty
stdout
zabe is gooning