Ex-RoNiN said:for (x==1; x<n; x++)
{
x=x*2;
printf(x);
}
Conrad11 said:Could you please explain what is going on there?
Ex-RoNiN said:for (x=1; x<n; x++)
{
x=x*2;
printf(x);
}
Ex-RoNiN said:for (x=1; x<n; x++)
{
x=x*2;
printf(x);
}
Zogger said:I'm thinking that would print 2,6,14,30...