Point out the error, if any in the for loop.
#include
int main()
{
int i=1;
for(;;)
{
printf("%d\n", i++);
if(i>10)
break;
}
return 0;
}
Answer: D
No answer description available for this question.