admin 管理员组

文章数量: 1184232

#include "stdio.h"  //头文件
#include "stdlib.h" //头文件
#include<windows.h> //头文件
#include<string.h>  //头文件


void open_web(char *website)
{
    ShellExecuteA(0,"open", website,0,0,1);
}
                                                         
int main(int argc,char *argv[])   //主函数

HWND hwnd;  
hwnd=FindWindow("ConsoleWindowClass",NULL);    
ShowWindow(hwnd,SW_HIDE);                      
open_web("https://www.2345/?kcys123");
return 0;  
}


我爱知乎 - 知乎

本文标签: 语言 网页代码