반응형
#include "apue.h"
#include "apue.h"
int main()
{
int c;
while((c=getc(stdin))!=EOF)
if(putc(c, stdout)==EOF)
err_sys("output error");
if(ferror(stdin))
err_sys("input error");
exit(0);
}
/*
* #include <stdio.h>
* int getc(FILE *fp);
* int fgetc(FILE *fp);
* int getchar(void);
*
* Warning : EOF & FILE *fp
*
* ./a.out <oldfile> newfile
*/
반응형
'System Programmings > C' 카테고리의 다른 글
[C] Cygwin에서 ssl 사용하기 (0) | 2011.03.23 |
---|---|
[C] 난수 생성 (0) | 2011.03.20 |
[C] ls.c - 현재 디렉토리의 파일 및 폴더 출력 (0) | 2011.01.30 |
[C] Advanced Programming In The Unix Environment - Second Edition (0) | 2011.01.30 |
[C] 나눗셈의 몫과 나머지 (div(), ldiv()) (0) | 2010.08.07 |