/file_copying

A simple file copying program from the book "The C Programming Language" by Brian W. Kernighan and Dennis M. Ritchie. This program copies its input to its output one character at a time.

Primary LanguageCOtherNOASSERTION

File Copying

A simple file copying program from the book "The C Programming Language" by Brian W. Kernighan and Dennis M. Ritchie. This program copies its input to its output one character at a time.

Getting Started

In order to compile the program you need C installed on your system. On Mac you can compile this program by using the following command:

sudo clang file_copying.c

This command will create a new file named a.out. Then you can run the program using the following command:

./a.out

Prerequisites

Installed c programming language.

Authors

  • Brian W. Kernighan
  • Dennis M. Ritchie

License

All rights belong to the authors of the book.