govno.c 243 B

123456789101112
  1. #include <stdio.h>
  2. int zzz(int i, int x, char *str) {
  3. while(1) {
  4. printf("%s\n", str);
  5. i++;
  6. if(i == x) {
  7. return 0;
  8. }
  9. }
  10. return 0;
  11. }