Q. 60 Consider the following C program
# include <stdio.h>intmain( ){inti, j, k = 0;j = 2 * 3 / 4 + 2.0 / 5 + 8 / 5;k -= --j;for(i = 0; i < 5; i++){switch(i + k){case1:case2:printf("\n%d", i + k);case3:printf("\n%d", i + k);default:printf("\n%d", i + k);}}return0;}
The number of times printf statement is executed is_______.
(A) 8
(B) 9
(C) 10
(D) 11
Answer: (C)
Explanation:












