Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
vik96 каза:Може ли да ми дадете документацията или някви уроци за библиотеката Ha C++ - CUrl
#include "curl/curl.h"
#include <iostream.h>
#include <string.h>
#include <fstream.h>
int main()
{
ifstream file("http://sait.com/stranica.php");
char masiv[100];
if ( !file.is_open() )
{
cout << "error!";
}
while (! file.eof() )
{
file.getline (masiv,100);
cout << masiv;
}
cout << endl;
system("pause");
return 0;
}