Hello!
I am writing a c++ code for displaying a 3D cube.
I have some small problems with arrays.
I want to initialize just some interval of array.
Example:
int array[10][10]=0;
//now I want to initialize just an interval
array[0][5] TO array[0][8]=1;
___________
I know that in place where the word TO is, has do be
some sign, which will do initialization from one place
of array TO another, but I don't know which.
Maybe this is not correct procedure so fell free to tell
me a better solution.
Thanks for help!
Damir