i got this code segment frm a bk...but am not understanding it....help me out... :?:
int place[4][3]={{1},{1,2},{1,2,3},{1,2,3}};
int row,col;
for(row=0;row<4;row++)
{
cout<<'\n';
}
for(col=0;col<3;++col)
{
cout<
>but am not understanding it....
Don't try to, it's wrong and will most likely give you an access violation at run-time. Dare I ask what book you got the code from?