A C Language Programmin Question Using The While Loop
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(????????????);
??????????;
}