fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main(void) {
  5. char moji = 'b';
  6.  
  7. if (moji == 'a')
  8. {
  9. printf("moji is a\n");
  10. }
  11. else
  12. {
  13. printf("moji is not a\n");
  14. }
  15.  
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0s 5312KB
stdin
Standard input is empty
stdout
moji is not a