Please explain your question further. You are comparison is like comparing apples to cars. And I think you ment to use <> instead of ().
Adrian
yes i failed to put <>. i'm beginner to c++. i'm always confusing with different type of function declarations. explain the
pair<map<char,i nt>::iterator,b ool> ret; declaration. here what happens?
yes i failed to put <>. i'm beginner to c++. i'm always confusing with different type of function declarations. explain the
pair<map<char,i nt>::iterator,b ool> ret; declaration. here what happens?
You get a pair which consists of a map<char,int> and a bool.
Comment