// Print values of i #include int main(void) { int i = 1; while (i <= 3) { printf("meow\n"); i++; } }