このプログラムを実行したときの問題は何ですか。クラスを破棄したいのですが、プログラムの最後に cout fetch の後にエラー ボックスが表示されます。何が問題ですか?
#include <iostream>
using namespace std;
class user {
public:int internal;
public:user(int point) {
internal = point;
};
~user () {
cout << "Fetch";
}
};
void main() {
user gil(5);
user * p;
p=&gil;
delete p;
getchar();
}