+ 3
Why can't we assign an array to an array?
Array assignment is not possible in c++, why is that?
2 Respuestas
+ 2
Can you share your code's link, not sure what you mean by array assignment here ...
https://www.sololearn.com/post/75089/?ref=app
- 1
You mean to assign an array inside an array?
If yes then you can do that
int two_d_array[][] = {{1,2,3}, {9,8,7}};