M Mr. Dubey π Coach β 103.11K Points π Programming for Problem Solving Q. What is output of below program? int main() { int i,j,k,count; count=0; for(i=0;i<5;i++) { for(j=0;j<5;j++) { count++; } } printf("%d",count); return 0; } (A) 5 (B) 10 (C) 25 (D) 50 ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (C) 25