struct point{ int x; int y;};class pt{ void i(); point f[20];};
void pt::i(){ f[0].x=f[0].x+1;}void main(){
}这一段程序如果不在MFC中的CPP文档,运行是正确的,可为什么一在那里面运行就说我有错误,我晕倒啦
你这个程序有main函数,与MFC的入口函数冲突。