Create a two dimensional dynamic integer array S. The size should be seq1_length+1
and seq2_length+1
. If seq1_length = 10
and seq2_length = 10answer should be
S[11][11]`.
I used this code
S= new int *[len1];
for(int i=0;i<len1;i++)
S[i]=new int[len2];
How can I check the size of this array supposed to be S[11][11]
.