Multiple choice Which of the following programs prints ABCDEFG? void main() { int i; for(i=65;i<=71;printf(%d,i),i++); } void main() { int i; for(i=65;i<=71;printf(%c,i)); } void main() { int i; for(i=65;i<=71;printf(%c,i),i++); } void main() { int i; for(i=65;i<=70;printf(%c,i),i++); } Reveal answer Fill a bubble to check yourself C Correct answer Explanation Loop will execute for i = 65 to 71. The ASCII value of 'A' = 65 and ASCII value of 'G' = 71 Hence, the output will be “ABCDEFG”.