โช Choose the correct option.
What will be the output of the below C program.
#include
int main()
{
int i = 0;
for(i = 3; i < 15; i + = 3)
{
print{("%d", i);
++i;
}
return 0;
}
#include
int main()
{
int i = 0;
for(i = 3; i < 15; i + = 3)
{
print{("%d", i);
++i;
}
return 0;
}