Posts
 
Reputation
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
~2K People Reached
Favorite Forums
Favorite Tags
c x 1

1 Posted Topic

Member Avatar for kumarmpk4u

#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); } …

Member Avatar for megha_1
0
2K

The End.