下了个他人的例子,一个console程序,编译没有问题,把文件和库加入工程,编译后出现如下错误
libcpd.lib(iostream.obj) : error LNK2005: "public: __thiscall std::ios_base::Init::Init(void)" (??0Init@ios_base@std@@QAE@XZ) already defined in msvcprtd.lib(MSVCP60D.dll)在网络上查了查,发现是库冲突,在链接选项中忽略msvcprtd.lib,msvcrtd.lib,再次编译,结果是几个warning 加一个error 
LINK : warning LNK4049: locally defined symbol ""public: __thiscall std::ios_base::Init::Init(void)" (??0Init@ios_base@std@@QAE@XZ)" imported
…………………………………………………………
tttDlg.obj : error LNK2001: unresolved external symbol __imp__fread有没有解决方法啊  请教!!!