标准C lib:
int fputc(int c , FILE *stream);
Run Code Online (Sandbox Code Playgroud)
这种行为发生了很多次,例如:
int putc(int c, FILE *stream);
int putchar(int c);
Run Code Online (Sandbox Code Playgroud)
为什么不使用CHAR,因为它真的是?如果需要使用INT,何时应该使用INT而不是CHAR?
function ×1