I have just started to learn c by doing an old project from python. However I need to get weather data from a website and found curl. I did the first two commands for the vcpkg quick start, then followed the curl commands and running "curl -help" in cmd returns a bunch of commands. VS code autofills "curl/curl.h" but when attempting to compile with mingw64 gcc, it throws an error. The code is just includes
#include <stdio.h>
#include <curl/curl.h>
and outputs "curl/curl.h: No such file or directory"