Create an ADTSet Create an ADTSetSolutionIn the C programmin
 Create an ADT,Set
  Create an ADT,Set
Solution
In the C programming to create an ADT it requires to files those are with .h and .c
 Here the .h contains the abstract type and .c contains the implementation.
 example:
 For the stack data structure
 stack.c
#include \"stack.h\"
    #define STACKSIZE 5
    struct StackStructType {      
        int stackItems [STACKSIZE];  
        int nItems;
    };
for stack.h
 stack.h
typedef struct StackStructType *StackType;
Set:
 we can implement the below on the set ADT
union(setA, setB), intersect(setA, setB), difference(setA, setB), isSubset(setA, setB)

