Source Code File 02-01_curltest.c

#include <stdio.h>
#include <curl/curl.h>

int main()
{
    printf("libcurl version %s\n", LIBCURL_VERSION);

    return(0);
}

Notes

* Wide version of this code (statements not split)