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