main()
{
int i=1;
While()
{
printf(ā%dā,i++)
If(i>10)
Break;
}
}
Tutorial answer:
Syntax error
Debugging solution:
While loop must contain condition but in these while loop does not contain condition so it will display error,
0 Comments