Dear Friends,
I would like to add row to 2d array, I have developed below logic and unfortunately it gives me weird output and some how it changes the dimension of my array
it would be great if you can take a look to it and any help from your side is highly appreciated
Input array
3 6 6
9 8 5
5 6 7
row to insert zero: 2
Out put array
3 6 6
0 0 0
9 8 5
5 6 7