Name: Anonymous 2010-05-06 13:08
int listsize, count;
cout<<"Define size of list: ";
cin>>listsize;
cout<<endl;
int list[listsize];Are there any problems with this? It works fine but I just want to make sure I'm not committing a faux pas.