#cpp
Read more stories on Hashnode
Articles with this tag
// 1) Simple One to Create 2D array int arr[3][2]={{1,2}, {3,4}, {5,6}}; for (int i = 0; i < 3; i++) { ...