用remove函数功 能: 删除一个文件
用 法: int remove( const char *filename);
头文件:在Visual C++ 6.0中可以用stdio.h
返回值:如果删除成功,remove返回0,否则返回EOF(-1)。
例:#include <stdio.h>
int main()
{
if(remove("1.txt"))
printf("Could not delete the file &s /n","1.txt");
else printf("OK /n");
return 0;
}