#include; #include"intcell_des.h" using namespace std; int main() { IntCell x(9); IntCell y(11); IntCell z(13); x.~IntCell(); cout << x.getValue() << endl; cout << y.getValue() << endl; cout << z.getValue() << endl; }