How to create your own C++ Library and share it with others so that everyone can use it?

56 views Asked by At

Everyone knows about the STL , like how it gives us prebuilt containers and functionalities. Similarly I want to create my own library for the Linked Lists as a learning project, where I want to add the functionalities :

Able to define what type of list i want (DLL , SLL , Circular LL , Doubly Circular LL) Insert a node , able to insert at any position Delete a node , delete any node specified. And many more .

But the main problem is that I dont know how to create a library and watching the tutorials is not much help.

I am expecting that I will be able to create a library and can include it a program anywhere in the system. I also want to share these libraries with others so just like STL others can use the my library.

Any help is appreciated.
Edit : Please also mention the necessary commands or structure for it .

0

There are 0 answers