# include "stdio.h" # include "dos.h" # include "alloc.h" # include "conio.h" # include "string.h" # include "process.h"
含有以上头文件的CPP文件, 在VC编译的时候出错 说找不到ALLOC.H
而我在TC3.0里可以运行.请问有什么办法可以让这个文件在VC里也能运行.
好像vc里使用的不是alloc.h,而是malloc.h。
你换了试试看!
我有个程序编译的时候也是这样,#include<alloc.h>文件找不到,我改成:#include<malloc.h>后错误更多了,怎么回事啊?VC中确实没有alloc.h文件,但是有malloc.h文件。