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() {
static int i = 3;
printf("%d\n", i);
}
or
static int i = 3
Today, these examples raise a NotImplementedError. These initializers are different from local variable initializers: for local variables, initialization involves outputting an additional IL command, but for initializing objects with static storage,
The text was updated successfully, but these errors were encountered:
For example
or
Today, these examples raise a NotImplementedError. These initializers are different from local variable initializers: for local variables, initialization involves outputting an additional IL command, but for initializing objects with static storage,
The text was updated successfully, but these errors were encountered: