#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; }