how can I declare linkedlist (the ready implemented linkedlist in c++)
eman 22 0 Junior Poster in Training
Recommended Answers
Jump to Postjust include <list> header file. See this link
#include <list> using std::list int main() { list<int> MyList; }
All 2 Replies
Ancient Dragon 5,243 Achieved Level 70 Team Colleague Featured Poster
eman 22 0 Junior Poster in Training
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.