Answer the question
In order to leave comments, you need to log in
How to implement a program for downloading from given links?
In order to download, in linux, you can enter wget http://@#*!!! and you will have the required file. But how to write this in a simple, not intricate program?
Answer the question
In order to leave comments, you need to log in
#include <stdlib.h>
int main()
{
system("wget http://@#*!!!");
return 0;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question