// matrix addition import java.util.Scanner; class Arrays17{ public static void main(String args[]) { int row,col; Scanner sc = new Scanner(System.in); System.out.println("Enter the no of rows"); row = sc.nextInt(); System.out.println("Enter the no of col"); col = sc.nextInt(); int i,j; int[][] a = new int[row][col]; int[][] b = new int[row][col]; int[][] c = new int[row][col]; for(i=0;i