Source Code File 02-02_curlversion1.c
#include <stdio.h>
#include <curl/curl.h>
int main()
{
printf("libcurl version %s\n", curl_version());
return(0);
}
Notes
* The curl_version() function's output is quite detailed.
* This code doesn't have a wide version (no statements are split).
Copyright © 1997-2025 by QPBC.
All rights reserved
