summaryrefslogblamecommitdiff
path: root/tests/sources/0507_loop_limit2.c
blob: bafdf7764b8e1fc26b8b95e51cf8a9264e725f43 (plain) (tree)
1
2
3
4
5
6





                       
int x = 0;
int N = rand(0,1000);
while (rand(0,1)==0) {
  if (x < N) x = x + 1;
}
print(x);