fork download
  1. #include <stdio.h>
  2.  
  3. void test(int x) {
  4. if (x == 'open')
  5. printf("opened\n");
  6. if (x == 'exit')
  7. printf("exited\n");
  8. }
  9.  
  10. int main() {
  11. test('open');
  12. test('exit');
  13. return 0;
  14. }
Success #stdin #stdout 0.02s 1720KB
stdin
Standard input is empty
stdout
opened
exited