You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
int printf(const char *s, ...);
int main(void) {
int i = 10;
do {
if (i % 3 == 0)
continue;
if (i == 2)
break;
printf("%d\n", i);
} while (i--);
return 0;
}
Above program hangs - i.e. loop doesn't terminate.
The text was updated successfully, but these errors were encountered:
OK. Thank you. I'll check it. Currently I have couple dozens of similar small tests which do not work for C2MIR. I am on very beginning of my C2MIR debugging.
Above program hangs - i.e. loop doesn't terminate.
The text was updated successfully, but these errors were encountered: