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