[Solved] C code for file downloading from internet using curl


curl uses GNU autotools to be built from source. There’s a library to be built and configured, for the example program and header file, to link against. The error :

Error 119"C:\Users\Sisitha\Documents\CCS C Projects\ Testing\curl\curlbuild.h" Line 556(145,183): " Unknown non-configure build target"

Suggests that the curl.h you included, hasn’t been configured, by the standard GNU ./configure; make; make install build sequence.

Curl installation instructions Install — how to install curl

1

solved C code for file downloading from internet using curl