#include <stdio.h>
int main()
int i=-5;
while(i<=5)
{
if (i>=0)
break;
else
{
i++;
Continue;
printf( "Hello);
return o;
}
Answers
Answered by
0
Answer:
error because while loop have not }
if I assume at the end } then answer will be nothing
Similar questions