[求助]Fopen函数的一个结合问题
头文件省略。int main(void)
{
TCHAR infoBuf[INFO_BUFFER_SIZE];
GetSystemDirectory( infoBuf, INFO_BUFFER_SIZE );
fopen("%s\\cyc.exe","w");//请问这里应该如何更改才能达到把cyc.exe这个文件生成到 getsystemDirectory得到的目录里面呢?
printf( " %s", infoBuf );
}
----------------解决方案--------------------------------------------------------
fopen("%s\\cyc.exe","w"); %s代表文件路径
这样写,可以么?
----------------解决方案--------------------------------------------------------
fopen not printf. use string functions, combine two string
----------------解决方案--------------------------------------------------------