In PHP, I can do this as simple as:
file_get_contents('http://stackoverflow.com/questions/ask');
What is the shortest code that will do the same in C ?
UPDATE
When I compile a sample with curl, I get errors like this:
unresolved external symbol __imp__curl_easy_cleanup referenced in function _main
source
share