Here is my program class MEM{ public: float** GEN(void) { float** X=(float**)malloc(sizeof(float)*3); for (int Row=0; Row<3; Row++) {...
Separate names with a comma.