CMChandrachur MukherjeeJan 20, 2018
Why does this program not work as expected?
#include <stdio.h> #include <conio.h> void main() { int mainMat[10][10], minorMat[10][10], i, j, x, y, r, c; clrscr(); printf("This program can find a minor matrix based on any element of a given matrix. \n"); printf("Please ent...
APananth and 1 more commented