//Multiplication of two matrices given in ftA.dat and ftB.dat to ftC.dat without using array. // // Assumption made is that the size of the matrices are known. import java.io.*; public class soln10thu { public static void main(String args[]) { int p, m, n; //Size of matrices are p*n and n*m; p=2; n=3; m=4; try { File fa = new File("fileA.dat"); File fb = new File("fileB.dat"); File fc = new File("fileC.dat"); File ft = new File("Temp.dat"); FileOutputStream out = new FileOutputStream(ft); PrintWriter pw = new PrintWriter(out); for(int i=0; i