What do you need to do to clean up an int or char (not a pointer)?
Is it necessary to clean up this type of data after use?
sample ex:
// MAX = 100 ;
class Simple {
int a[ MAX ] ;
public :
~Simple ( ) ;
... // some declaration to fill, initialize ...
};
Is it essential to clean up data on the stack, e.g. the array a[ MAX ]
in the example?