想在自己的电脑上创建搜索引擎客户端
有个想法编写一个程序
输入你想查找的内容
它能自动转到baidu或google上进行搜索
谁能给点提示?
谢谢!
#include "stdio.h"
#include "conio.h"
main()
{
char str[80];
char STR[255];
gets(str);
strcpy(STR,"C:\\Progra~1\\Intern~1\\IEXPLORE.EXE ");
strcat(STR,"http://www.baidu.com/s?wd=");
strcat(STR,str);
strcat(STR,"&cl=3");
system(STR);
}
假如是TC,只好如此了