Ian Malven

Ian Malven

  • NA
  • 2
  • 8.5k

A C Language Programmin Question Using The While Loop

Oct 25 2012 5:23 AM
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(????????????);
??????????;
}



Answers (2)