What is the final value of digit?

			  		

Loading

โœช Choose the correct option.

What is the final value of digit?


void main()
{
int digit
for (digit = 0; digit < = 9; ++digit)
printf ("%d/n", digit);
digit = 2*digit;
- - digit;
}

A. 19
B. -1
C. 17
D. 16