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
1 Posted Topic
Re: #include <stdio.h> #include <stdlib.h> int main(int argn, char * argv[]) { int src_fd, dst_fd, n, err; unsigned char buffer[4096]; char * src_path, dst_path; // Assume that the program takes two arguments the source path followed // by the destination path. if (argn != 3) { printf("Wrong argument count.\n"); exit(1); } … |
The End.