apue 에 있는 예제에 관한 질문입니다.

supaflow의 이미지

#include        "ourhdr.h"
 
int
main(void)
{
 
        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);
}

apue에 있는 예제파일 입니다.
문자를 입력하면 그대로 반환하는 프로그램인데요.
저기서 왜 c 의 타입이 char 형이 아닌 정수(int) 형인지 궁금하네요.
char 로 해도 동작은 제대로 되던데 말이죠..
lacovnk의 이미지

man getc

int getc(FILE *stream);

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.