The arraybagstack structure is in the h file and therefore


RIght now, the following information is in the header file (C language).

# ifndef ArrayBagStack

# define ArrayBagStack

# define TYPE int

# define EQ(a, b) (a == b)

struct arrayBagStack {

TYPE data [100];

int count;

};

Question: The arrayBagStack structure is in the .h file and therefore exposed to the users of the data structure. How can we get around this problem?

Request for Solution File

Ask an Expert for Answer!!
Computer Engineering: The arraybagstack structure is in the h file and therefore
Reference No:- TGS02917942

Expected delivery within 24 Hours