Point out the error, if any, in the while loop.
main()
{
int i = 1;
while ()
{
printf ( "%d", i++);
if (i >10)
break ;
}
}5
874 5b5cc7dde4d2b419777515f5
Q: Point out the error, if any, in the while loop. main() { int i = 1; while () { printf ( "%d", i++); if (i >10) break ; } }
- Show Answer
- Workspace
- Discuss