int numList1[10];
int *numList2 = new int[10];
I have seen too many solutions from others used the second way to assign array, do they work as the same?
int numList1[10];
int *numList2 = new int[10];
I have seen too many solutions from others used the second way to assign array, do they work as the same?