Complete the code segment below so that the output generated is as follows:
3 6 9 12 15 18 21 24 27 30
The code segment is as follows:
i=1;
while(????????????)
{
printf(????????????);
??????????;
}
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Dorababu MekaPosted Oct 25, 2012, 6:10 AM
Alok UniyalPosted Oct 25, 2012, 5:36 AM
while(i<=10)
{
printf("%d",i*3);
i++;
}