Step
up to the plate.
Problem 1Itýs
not uncommon for C programmers to write code that resembles object-oriented
programming techniques. The following structure is a good example
of a C implementation of an object. Why would a C++ class be more
efficient in terms of data space than this C construct?
struct c_obj {
int x, y; void (*create)(); void (*show)(); void (*hide)(); void (*delete)(); };
ANSWER

Problem 2What
is the best way to traverse elements linearly in an array?
ANSWER 
4-00
|