}while(0);
}
int main()
{
string U,A,B;
int temp=0;
cout<<"Enter Input for Universal set U: "; getline(cin,U);
cout<<"Enter Input for set A: "; getline(cin,A);
cout<<"Enter Input for set B: "; getline(cin,B);
UniversalSet(U);
SetA(A);
SetB(B);
How can I check if the elements of arrA[] and arrB[] in arr[]?
If the elements of arrA[] and arrB[] is a subset of arr[] then how to check union,intersection,difference and disjoint between arrA[] and arrB[]?