fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int c;
  5.  
  6. while ((c = getchar()) != EOF) {
  7. if (c == 'a') printf("Hello");
  8. else if (c == 'b') printf("World");
  9. }
  10.  
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 2296KB
stdin
abaa
stdout
HelloWorldHelloHello