On Wed, Oct 17, 2001 at 05:28:12AM +0530, Nikhil D. Kikkeri wrote:
hi,
Does anyone know how to use the Gnu C++ Library??
What does it mean you mean using libstd++ ?
i want to create some dynamically sized queues via linked lists (SLQueues). 1.>what header file should i include?(i think it is "queue")
Almost all kinds of datastructures are availble in STL.
2.>how do i instantiate the required object?
I think you need to consult some good programming book or tutorial for that. anyway, to instantiate Class A do this
A a;
//here 'a' is instance of Class A.
Regards