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