How many times will the printf statement be executed? June 6, 2022 by admin โช 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. NeverB. OnceC. 10D. 9 Submit Answer