Challenge #9 : Understand While and Do While Loop

What would the equivalent code, using a while loop, be for the example

	for(i = 0; i < 10; i = i + 1)
		printf("i is %d\n", i);

Complete and Continue