Answers for "how to write a 2d array"

C++
0

2d array

int x[3][4] = {{0,1,2,3}, {4,5,6,7}, {8,9,10,11}};
Posted by: Guest on March-10-2022

Browse Popular Code Answers by Language