Point out the error, if any, in the while loop.
main()
{
int i = 1;
while ()
printf ( "%d", i++);
if (i >10)
break ;
}
The condition in the while loop is a must.
View answer Workspace Report Error Discuss