C++03 / C++98.
More...
C++03 / C++98.
https://en.wikipedia.org/wiki/C++03
◆ main()
Definition at line 240 of file 03.cpp.
242 assert(__cplusplus == 199711);
248 assert(min(1,2) == 1);
249 assert(max(1,2) == 2);
250 pair<int, char> p(1,
'a');
251 assert(p.first == 1);
252 assert(p.second ==
'a');
253 p = make_pair(
'b', 2);
254 assert(p.first ==
'b');
void container_03()
container