C++题目

#include
int main() {

	int a, b = 2;
	std::cout << a << std::endl;
	std::cout << b << std::endl;
 	return 0;
}

上述程序输出结果是:

第一条语句报错,报错原因:使用了未初始化的局部变量a。

第二条语句输出2。

你可能感兴趣的:(C++,c++,算法,开发语言)