โช Choose the correct option.
What is the output of the following C Program?
void main() {
for(i = 1; i < 5; i++)
{
if (i == 3)
continue;
else
printf ("%d", i);
}
}
void main() {
for(i = 1; i < 5; i++)
{
if (i == 3)
continue;
else
printf ("%d", i);
}
}