Valid CPP Dumps shared by ExamDiscuss.com for Helping Passing CPP Exam! ExamDiscuss.com now offer the newest CPP exam dumps, the ExamDiscuss.com CPP exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com CPP dumps with Test Engine here:
What happens when you attempt to compile and run the following code? #include <deque> #include <iostream> #include <algorithm> #include <set> using namespace std; template<class T>struct Out { ostream & out; Out(ostream & o): out(o){} void operator() (const T & val ) { out<<val<<" "; } }; int main() { char s[]={"qwerty"}; char t1[]={"ert"}; char t2[]={"ERT"}; sort(s, s+6); cout<<includes(s,s+6, t1,t1+3)<<" "<<includes(s,s+6, t2,t2+3)<<endl; return 0; } Program outputs: