fork(1) download
  1. #include <stdio.h>
  2.  
  3. void test(int x) {
  4. if (x == 'хуй')
  5. printf("хуй\n", x);
  6. if (x == 'пизда')
  7. printf("пизда\n", x);
  8. if (x == 'джигурда')
  9. printf("джигурда\n", x);
  10. }
  11.  
  12. int main() {
  13. test('хуй');
  14. test('пизда');
  15. test('джигурда');
  16. return 0;
  17. }
Success #stdin #stdout 0.01s 1676KB
stdin
Standard input is empty
stdout
хуй
пизда
джигурда
пизда
джигурда