Home » C++ Programming » Dynamic Memory » Question
  1. What is the correct syntax for declaring an allocator?
    1. template < class T > class;
    2. template class allocator;
    3. template < class T > class allocator;
    4. All of above
    5. None of these
Correct Option: C

It is a type of syntax for declaring the allocater.



Your comments will be displayed only after manual approval.