home *** CD-ROM | disk | FTP | other *** search
- main() /* write.c -- writes a file and echoes it on screen */
-
- {char name[20];
- char buf[1];
- int fin, fout;
- char *nameout;
-
-
- nameout = "temp";
- printf("nameout's name is %s\n", nameout);
- printf("Name please: ");
- gets(name);
- if ((fin = open(name,0)) == -1)
- { printf("No such file: %s\n",name);
- exit();
- }
- if((fout = creat(nameout,1)) != -1){
- printf("file number is %d\n", fout);
- } else exit();
- while(read(fin, buf, 1) >= 0){
- if (buf[0] == 26) exit();
- else {
- putchar(buf[0]);
- write(fout, buf, 1);
- }
- }
- close(fin);
- close(fout);
- }