fork download
  1. #include <stdio.h>
  2. #include <stdbool.h>
  3. int main () {
  4. char* name = "zabe";
  5. bool isonline = true;
  6. if (isonline) {
  7. printf("%s is online\n", name);
  8. }
  9. else {
  10. printf("%s is not online\n", name);
  11. return 0;
  12.  
  13. }
  14. }
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
zabe is online