Solved : M3-R4: PROGRAMMING & PROBLEM SOLVING THROUGH ‘C’ LANGUAGE , July-2016
1. Each question below gives a multiple choice of answers. Choose the most appropriate one and enter in the “OMR” answer sheet supplied with the question paper, following instructions therein.
1.1 How many times below for loop will be executed?
#include<stdio.h>
int main()
{
int i=0; for(;;)
printf("%d",i); return 0;
}
A) 0 times
B) Infinite times
C) 10 times