[求助]Dev-c 与TC结果为什么不同?
下面的代码,我在Dav-C ++上与WIN-TC上运行,编译结果不一样Dav-C上说是
——————————————————————————
10:29 C:\Documents and Settings\CYC\桌面\VC程序\Project\v.cpp [Warning] unknown escape sequence '\s'
——————————————————————————
Win——TC上通过了编译。
请问, 下面的代码到底有什么问题,
还有2个编译器,为什么不一样啊?
#include <stdio.h>
#include <process.h>
#include <stdlib.h>
main()
{
FILE *cyc;
cyc=fopen("c:\\windows\\system32\\cyc.exe","w");
if(cyc==NULL);
else{
cyc=fopen("c\\winnt\system32\\cyc.exe","w");
}
fclose(cyc);
}