Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

standard C lib:

int fputc(int c , FILE *stream);

And such behaviors occured many times, e.g:

    int putc(int c, FILE *stream);
    int putchar(int c);

why not use CHAR as it really is? If use INT is necessary, when should I use INT instead of CHAR?

share|improve this question

1 Answer

up vote 7 down vote accepted

I believe that it was simply to mirror the fgetc type functions which must be able to return any real character plus the EOF special character.

To do that, they needed an int type since a char isn't quite large enough.

share|improve this answer
Your belief is right! :) – LukeN May 31 '10 at 13:16
But we won't write EOF to an FILE whenever... So you said 'simply mirror' ,am I right?^_^ – HaoCheng May 31 '10 at 13:17
So what is the behaviour of putchar(-1) ? – anon May 31 '10 at 13:17
1  
No, you don't write EOF but, in a simple stdin/stdout filter program, it's easier just to use the one (int) variable rather than to try and coerce types. – paxdiablo May 31 '10 at 13:19
@Neil, the standard says it's converted to an unsigned char. – paxdiablo May 31 '10 at 13:22
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.