diff --git a/matrix_multiplication.c b/matrix_multiplication.c new file mode 100644 index 0000000..e197c9a --- /dev/null +++ b/matrix_multiplication.c @@ -0,0 +1,38 @@ +#include +#include +int main() { + int n; + int i,j,k; + printf("Give the size of matrices.\n"); + scanf("%d",&n); + int Mat1[n][n],Mat2[n][n],Mat3[n][n]; + printf("Enter elements of first matrix:\n"); + for(i=0;i