How many times will the printf statement be executed?

Loading

โœช Choose the correct option.

How many times will the printf statement be executed?


void main()

{

int n; n=10;

while(n < 10){

printf ("hello");

--n;

} }

A. Never
B. Once
C. 10
D. 9