(46)
(Choose 1 answer)
A. i 8, k: 4
B. i 10. k 4
C. i 16, k 4
D. i: 16, k: 5
E. i: 16, k: 3
What is the output when the sample code below is executed?
int n = 10, i;
int k = 0;
for (i=1; i<n; i = i*2) k++;printf("i: %d, k: %d", i, k);
printf("");
FUS