Hi,
I want to declare a function, which takes input of a set of integers and returns a set of set of integers , I tried this but, it ain't correct , plz tell how I should do what I want
#include<iostream>
#include<set>
#include<string>
using namespace std;
int Q;
int N;
void stateminimise();
set<set> partition(set inp);
int main(){
cout<<"\n Enter the number of states \n";
cin >> Q;
cout<<"\n Enter the number of various alphabets to used for input and output \n";
cin << N;
cout<<"\n The input and output lines will be represented as X and Y respectively \n";
stateminimise();
}
set<set> partition(set inp){
}
Thanks, bye,
arjun