12 lines
243 B
C
12 lines
243 B
C
#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;
|
|
}
|