Уважаемый, а это для кого писалось?

Сообщение от
alsav22
C++ |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| #include <iostream>
#include <urlmon.h>
#include <string>
#pragma comment(lib,"urlmon.lib")
using namespace std;
int main()
{
string http = "http://";
string str;
cin >> str;
http += str;
URLDownloadToFile(0, http.c_str(),"text.txt",0,0);
system("pause");
return 0;
} |
|