Answer is wrong

the strength is not changing.
here is the link to the code:

hey @kamakshi.behl22 while taking input you should write cin >> a[i][j] but you have written cin >> a[r][c], this causes all the input to go inside last element and rest of matrix remains unfilled.

the answer is still wrong https://ide.codingblocks.com/s/197610

@kamakshi.behl22 you are using to denote number of columns and also using it as character, please don’t use the same variable name twice.

correct code for reference purpose: https://ide.codingblocks.com/s/197619