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