my/c/l15/govno.c

13 lines
243 B
C
Raw Normal View History

2026-07-12 14:16:22 +03:00
#include <stdio.h>
int zzz(int i, int x, char *str) {
while(1) {
printf("%s\n", str);
i++;
if(i == x) {
return 0;
}
}
return 0;
}