A.int a=5;int x[a];
B.const int a=5;int x[a];
C.int n=5;int *p=new int [A] ;
D.const int n=5;int *p=new int [a];