Computer Science, asked by leyaqatsultan249, 2 months ago

#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 ashu0itkm
0

Answer:

error because while loop have not }

if I assume at the end } then answer will be nothing

Similar questions