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