-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauto_coding.c
55 lines (43 loc) · 1.27 KB
/
auto_coding.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//auto coding
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <math.h>
#include <string.h>
int main()
{
FILE *fpr; // input file pointer
FILE *fpw; // output file pointer
char ch;
int delay;
char *sourceFile =(char*)malloc(15*sizeof(char));
char *destinationFile = (char*)malloc(15*sizeof(char));
printf("enter source file name with extension\n");
scanf(" %s",sourceFile);
printf("enter destination file name\n");
scanf("%s",destinationFile);
printf("enter delay of typing, recommended 150000\n");
scanf("%d",&delay);
fpr = fopen(sourceFile, "r");
fpw = fopen(destinationFile, "w");
if (fpr == NULL) {
printf("Error opening input file.\n");
return 1;
}
if (fpw == NULL) {
printf("Error opening output file.\n");
fclose(fpr); // Close the input file before returning
return 1;
}
while ((ch = fgetc(fpr)) != EOF) {
fputc(ch, fpw);
fflush(fpw); // Flush the output buffer to ensure immediate write
usleep(delay); // Delay in microseconds (100000 = 100 milliseconds)
}
printf("File copied successfully.\n");
fclose(fpr);
fclose(fpw);
free(sourceFile);
free(destinationFile);
return 0;
}