wyxxxcat #define PRINT(i, limit) \ do { \ if (i++ < limit) { \ printf("Hello cat\n"); \ continue; \ } \ } while (i++ < limit); int main() { int i = 0; PRINT(i, 5); printf("%d\n", i); return 0; } ```