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; +}