标签:style blog http io ar color os sp for
#include<iostream> #include<string> #include<stddef.h> using namespace std; string sa[10]; int ia[10]; int main() { const size_t array_size = 10; int ia[array_size]; for (size_t ix = 1; ix <= array_size; ++ix) { ia[ix] = ix; cout << ia[ix] << endl; } return 0; }
上代码所示位置,出现了下标越界的情况,在编译时不提示错误,在调试过程中出现如下错误:
只需要将等号去掉就可以;
标签:style blog http io ar color os sp for
原文地址:http://www.cnblogs.com/lwflourish/p/4148323.html