求隐藏运行程序的方法
各位高手在tc中能否把一个改了名的应用程序调到内存中运行
如123。exe 改名为123。dat
tc中:
把123。dat作为123。exe调入内存运行
?????????
???????????????????
请各位高手指点!!!
2006-12-25 13:40
# include "stdlib.h"
# include "stdio.h"
main()
\\比如 123.dat 在c:\123.dat那么
{system("c:");
system("ren 123.dat 123.exe");
system("123.exe");
}
通过~
int system(const char *command)
command DOS命令字符串
楼主可以结贴拉
2007-01-07 13:52
2007-01-07 13:55