请问各位
#include "stdafx.h"
#include<iostream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
int ia[3][4]={
{0,1,2,3},
{4,5,6,7},
{8,9,10,11}
};
int(*p)[4];
for(p=ia;p!=ia+3;++p)
for(int *q=*p;q!=*p+4;++q)
cout<<*q<<endl;
return 0;
}
当在vc++2008环境下,当选择debug,在这时候调试,会弹出这样的信息::“没有找到MSVCR90D.dll,因此这个程序未能启动。重新安装应用程序可能会修复此问题“。当选择release,这个程序能运行,请问这是什么原因啊?谢谢