382 views
0 votes
0 votes
int main() {

 int i = -5;

 While(i<=5){

    if(i>=0)

            break;

    else {

             i++;

            continue;  }

  printf("GO");

  }

return 0;

}

Please log in or register to answer this question.

Related questions

1 votes
1 votes
1 answer
1
0 votes
0 votes
1 answer
2
shree asked Nov 22, 2014
531 views
What will be the second value printed by the program if parameter passing mechanism is call by reference?int b=10 //global begin procedure func(int x,int y) begin print(b...
1 votes
1 votes
1 answer
3
set2018 asked Nov 4, 2017
379 views
0 votes
0 votes
1 answer
4
Ashutosh_98 asked Sep 19, 2021
969 views
If a student prepairing for GATE 2022, then till how many years does he solve the Previous Year Questions?And how many times he have to attempt it ?Please give a strategy...