C++中局部变量必须先主动初始化,但下面的代码会输出0 ,不知为何?
#include<iostream>using namespace std;int main(){ int a; cout << a << endl; return 0; }
慕村225694
相关分类