![]() |
#2
忘记喧嚣2007-11-28 21:38
|
#include<iostream>
#include<cstddef>
using namespace::std;
int main()
{ const size_t b=5
int a[b]{0,1,2,3,4};
int *c=a;
cout<<*c<<endl;
return 0;
}
55555555555555555
为什么还是有错误?