You should declare what your program is supposed to do. What is the problem and the exact error messages.
From seeing your code I can say that it's natural to have errors since you are expecting to define the array dimension at runtime! This should be know during compile time. So not only that but need to be const also. Anyway I am not sure if your complier requires that but you cannot expect to define array dimensions during runtime.
Also you use <conio.h> which is ancient history. How old is your compiler anyway?
And some final point: you also use platform dependent, unsecure not recommended commands that are not part of c++: system("cls");
should be avoided.