#if !defined(ARRAY2D_H) #define ARRAY2D_H float **allocatememory(int row, int col) { float **m; m=new float*[row]; for(int i=0;i