0
Can we print the whole table in output by just one command or we have to write...cout[ ][ ] for every value
array
2 Respuestas
+ 8
You can use loops
0
if for example your array has the name 'arr' and consists of int, you can write:
for (int x: arr) cout << x;