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 main(void)
{
int x = 0;
for (int i = 0; i < 10; ++i) {
int args[i];
args[i-1] = i;
x += args[0];
args[0] = 0;
}
return x;
}
int main(void)
{
unsigned long x = 0;
for (unsigned long i = 0; i < 10; ++i) {
unsigned long args[i];
for (unsigned long j = 0; j < i; ++j) {
args[j] = i;
}
x += args[0];
args[0] = 0;
}
return x;
}
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
Minimal reproducible examples:
The text was updated successfully, but these errors were encountered: