Hi,
I need your help please..I am given the following data and I need to write C++ commands to get the array filled...
a[source][destination]=some value
how to write C++ code for the following? loop condition can be used
a[0][0]=0;
a[0][1]=1;
a[0][2]=1;
a[0][3]=1;
a[0][4]=3;
a[0][5]=2;
a[0][6]=3;
a[0][7]=3;