在32位系统下运行以下程序,可能的输出结果为()
int main () { int i,a[5]; for (i = 0; i <= 30; i++) { a[i] = 0; printf("%d:hello\n", i); } printf("%d:hello world",i); return 0; }
int main () { int i,a[5]; for (i = 0; i <= 30; i++) { a[i] = 0; printf("%d:hello\n", i); } printf("%d:hello world",i); return 0; }
三十行的 i:hello (i∈[0,30]) 和一行 30:hello world
三十行的 i:hello (i∈[0,30]) 和一行 31:hello world
多行的 i:hello (i∈[0,30] )
多行的 i:hello (i∈[0,31])