Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.55K
~300 People Reached
- PC Specs
- Processor : Intel Core i7-2630 QM RAM : 4 G.B. Display Adapters : Mobile Intel HD Graphics ATI Radeon…
Favorite Forums
Favorite Tags
c x 1
1 Posted Topic
I want to know how to download a file using c ? For copying a file in c I do this. [code=c] #include<stdio.h> #include<conio.h> int main() { FILE *inf, *ouf; char ch; inf = fopen ( "file1.ext" , "rb" ); ouf = fopen ( "file2.ext" , "wb" ); while( !feof … |
The End.