What is the following program doing?

			  		

Loading

โœช Choose the correct option.

What is the following program doing?


void main()
{
int digit = 0;
do
printf ("%d/n", digit++);
while (digit < = 9);
}

A. Adding 9 integers
B. Adding integers from 1 to 9
C. Display any 9 integer
D. Display integer from 0 to 9