什么会被打印出来?6 6或6 7?为什么?
void foo() { static int x = 5; x++; printf("%d", x); } int main() { foo(); foo(); return 0; }
c static
c ×1
static ×1