Tagged Questions
0
votes
2answers
73 views
Print the percentage during a transfer
This code is a portion of a FTP client that I have developed:
for(size_to_receive = file_size; size_to_receive > 0;){
nread = read(f_sockd, filebuffer, size_to_receive);
if(nread < ...
1
vote
2answers
127 views
Show progress indicator
I'm using C in Linux. How do I show a progress indicator that will let me know when the program (or parts of the program) will complete? For example, it could be something like "Searching...67%" and ...