M
mos
Hi! the following code will run without any error on the VC7.1 stdio
debug mode. who can tell me what's the problem?
struct st
{
int a;
};
int _tmain(int argc, _TCHAR* argv[])
{
st* p = new st;
delete p;
p->a = 0;
return 0;
}
mos.
debug mode. who can tell me what's the problem?
struct st
{
int a;
};
int _tmain(int argc, _TCHAR* argv[])
{
st* p = new st;
delete p;
p->a = 0;
return 0;
}
mos.