whats' the difference when declaring an arrray using int a[100]
and int *a = new int[100];
?
Thanks for you guys answearing my question.
I do understand that the former one will initialize the element in a but the later one won't, and what's more different?