Вот простой пример скручивания.Если требование для строгого C, а не C ++, измените приведенную ниже строку std :: string на массив char.
CURL *curl;
CURLcode res;
std::string postParams;
//Set parameters
postParams.clear();
postParams.append("¶meter1=");
postParams.append("data");
postParams.append("¶meter2=");
postParams.append("more data");
//Initialize curl
curl = curl_easy_init();
if(curl){
//Set site
curl_easy_setopt(curl, CURLOPT_URL, "http://www.yoursite.com");
//Use post, set parameters
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, (char *)postParams.c_str());
//Perform the session
res = curl_easy_perform(curl);
//Cleanup the session
curl_easy_cleanup(curl);
}
if(res == 0){
//Success
}
else{
//Failure
}