Hi
I run a c++ program in VC++ 2008 expression edition. The program was running perpectly in VC++ 6.0 edition. But when i execute the program in VC++ 2008 expression edition, the following error is shown
Debug assertion failed
Expression: Vector subscription out of range.
I define the two dimentional vector in the follwing way
vector<vector<int> > maclu;
maclu1.resize(nclus);
for(i=0;i<nclus;i++)
maclu1.resize( m );
Please help me to solve this issue.