From d9bf3015be6d7ed752bcd74d63728b76bbd76212 Mon Sep 17 00:00:00 2001 From: TARANG0503 <40140984+TARANG0503@users.noreply.github.com> Date: Thu, 1 Oct 2020 02:58:57 +0530 Subject: [PATCH] Create mcm --- mcm | 74 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 mcm diff --git a/mcm b/mcm new file mode 100644 index 0000000..e70e0d0 --- /dev/null +++ b/mcm @@ -0,0 +1,74 @@ +#include +using namespace std; + +void parenthesis(int i,int j,int n,int* brackets,char &symbol) +{ + if(i==j) + { + cout<>n; + cout<<"Enter the dimensions of matrices: "; + for(int i=0;i>arr[i]; + } + order(arr,n+1); + return 0; +}