related question: what is difference between vector<int> v(N) and vector < int > v [N]?
similar discussion in Reddit: Difference between square brackets and parenthesis when initializing points using new?
vector<int> v(100);
vector<int> v[100];
I don't have any ideas the differences between the two. It seems like they behave exactly the same. I read above posts, but still I don't get it.
Could you tell me the differences?