1 2 3 4 5 6 7 |
#include <windows.h> int main(void) { ShellExecute(NULL, "open", "http://www.skyfox.org", NULL, NULL, SW_MINIMIZE); return 0; } |
1 2 3 4 5 6 7 |
#include <stdlib.h> int main(void) { system("start http://www.skyfox.org"); return 0; } |
转载请注明:天狐博客 » C语言编写hao123类型的桌面快捷方式程序