Program to built matrix with the use of new and delete operator.
#include #include main() { int (*pa)[4]=new int [3][4]; int *pn=new int,i,j; int *pm=new int; clrscr(); cout<>*pn; cout<>*pm; cout<<"n Enter the elements : "; for(i=0;i<=*pn-1;i++) { for(j=0;j>pa[i][j]; } } cout<<"nnn Matrix…