actualmente no recuerdo los procesos en c++ y tengo la duda de como hacer leer dos matrices de un texto plano, ya posteriormente necesito hacer producto entre ellas. int** leerMatriz(char *fileName) { FILE *fp = fopen(fileName, “r”); if (fp == NULL) { exit(EXIT_FAILURE); } char linea[80]; fgets(linea, 79, fp); char *token = strtok(linea,” “);//10 6Read more