Are you willing to perform some operations on sets like, creating sets, union of two sets, intersection of two sets, difference of two sets etc. and couldn't find any standard library in C for doing all these?
If yes, then you're at the right place!!
This repo contains a header file which can do all the above mentioned operations of sets with ease.
-
Simple, just clone this repo and use place the header file in the same folder of where it should be used.
-
Then, just create a .c file in the same folder where the header is placed.
-
Finally, include the header by using,
#include"set.h"
at the top of your code.
-
That's it, you can now use all the functions in the header file in your code.
For more information on the functions in the header file, go ahead and open the 'Header_File' folder present in this repo