C++申请的数组,数组里的元素默认赋值竟然是很大的负数!
看代码:
#include<iostream>
using namespace std;
int main()
{
int*path = new int[5];
for (int i = 0; i < 5; i++)
cout << path[i] << endl;
system("pause");
}
输出之后:
-842150451
-842150451
-842150451
-842150451
-842150451
请按任意键继续.
(我的第一篇博客,不知为何图片贴不出来,如果解决了你的困扰,请点赞或者评论哟~)