如何用C语言实现打开网站.自己写了一段,但就是不能实现.
#include "stdio.h"
main(){
int a=2;
if(a){
system("http://www.zidisoft.com.cn");
}
想做成个书签式的保存常用网址,但运行没通过,请帮我看看问题出在哪?非常感谢
#include "stdio.h"
#include "stdlib.h"
main()
{
int a=2;
if(a==2)
{
system("start http://www.baidu.com.cn");
}
return 0;
}
楼主,少写了个},
system函数要加上头文件#include“stdlib.h”
system("\"C:\\Program Files\\Internet Explorer\\iexplore.exe\" http://www.zidisoft.com.cn");
system("start http://www.zidisoft.com.cn")
好囧……………… 还以为你要写浏览器~