Standard C++ Library Class Reference
Manuals
Brands
HP Manuals
Server
HP NonStop G-Series
111
112
113
114
115
116
117
118
119
120
return 0;
}
Output :
FALSE FALSE
Warnings
If your compiler does not support default template parameters then you need to always supply
the Allocator template argument. For instance you'll have to write:
vector<int,allocator>
instead of:
vector<int>
1
...
...
118
119
120
121
122
...
...
516