F:\vc\Ex_MCI\Ex_MCIView.cpp(24) : error C2065: 'OnNotifySize' : undeclared identifier F:\vc\Ex_MCI\Ex_MCIView.cpp(24) : error C2440: 'type cast' : cannot convert from 'int *' to 'long (__thiscall CWnd::*)(unsigned int,long)' There is no context in which this conversion is possible F:\vc\Ex_MCI\Ex_MCIView.cpp(112) : error C2065: 'm_hMCIWnd' : undeclared identifier Error executing cl.exe. 你们 能告诉我 这调试后的结果是什么意思吗
请问你的这些问题是基于那个平台调试的? 是vc6.0 vs2003 vs2005 我这按照书敲了些代码怎么也调试不起来帮我看看好么? #include<iostream> using std::cout; using std::endl; struct person { char * name; int age;
}; int main() { person * p; p=new person; p->name=new char[20]; p->name="Smart"; p->age=23; cout<<"\n"<<p->name<<" "<<p->age; delete p;