#include "stdafx.h"
#include
#include
#include
int _tmain(int argc, _TCHAR* argv[])
{
int k,j;
static int *fk[32];
for(k=0;k<32;k++)
{
fk[k]=&f[j];
printf("%d ",fk[k]);
j=j+32;
};
return 0;
}
fk[k]=&f[j];貌似没看见你在哪定义了f数组啊,所以有这个错误。
这个文件里没有定义f数组,如果你是定义在你的sz.cpp里的话
<sz.cpp>要改成"sz.cpp"
而且不要去include别的CPP源文件,而是应该用extern来引用别的CPP文件中的全局变量