I have a int a[10][2] array. Can I assign values in other way like this:
int a = someVariableValue;
int b = anotherVariableValue;
for (int i = 0; i < 10; ++i){
a[i][0] = a;
a[i][1] = b;
}
like:
for (int i = 0; i < 10; ++i){
a[i][] = [a,b]; //or something like this
}
Thank you! :)