Just try to dry run this code snippit , at the end you gonna get the answer:
{
int i = 1;
for(printf("1"); i <= 4;printf("3")) {
printf("2");
i++;
}
}