I'm relatively new to C++. I'm trying to declare a multiset that contains arrays of size 2. I've tried the following but I don't think it does what I want it to do:
multiset<int> nameOfSet[2];
Can someone please tell me what this line does? If this is wrong, please explain to me why and tell me how to do it correctly. Thanks in advance.