[求助]关于打开文件 请指点
我想新建并打开文件 car一运行就出现 can't open file strike any key exit
没有成功。
这是为什么,请指点一下
int main(void)
{
FILE *pf;
if((pf =fopen("D:\lianlian\car","wt+"))==0){
printf("can't open file strike any key exit!");
getch();
exit(1);
}
getch();
return 0;
}