0
Weather app in c
Is it possible to code a weather app in c(console)? In general i try to find out how i can get data from a website and print to the console. I did some research but couldn't find anything.
3 odpowiedzi
+ 1
Let's say you have data you want online.
https://www.google.com/search?q=weather+today
You can use C to send commands (such as wget) to your terminal to download a link as a HTML document. You can then open those documents and look for the data the you want, extract it and display it on your console.
+ 1
You can also use curl API to do all the job inside of your program
0
@Hatsy Rei
im serching for a tutorial, can you recommend me one?