用C语言写一个弹出网站的程序
2019-03-23 本文已影响0人
灰鸿YHY
你有没有想过用C语言写一个程序?
这个程序打开就能够访问到你的网站。
其实这很简单!
源代码:
#include<windows.h>
int main()
{
ShellExecute(NULL,"open","http://huihong.cf",NULL,NULL,SW_SHOWNORMAL);
}
注意:将 http://huihong.cf 替换为你想要的网址
你有没有想过用C语言写一个程序?
这个程序打开就能够访问到你的网站。
其实这很简单!
源代码:
#include<windows.h>
int main()
{
ShellExecute(NULL,"open","http://huihong.cf",NULL,NULL,SW_SHOWNORMAL);
}
注意:将 http://huihong.cf 替换为你想要的网址