cwrite.c
来自「NIST Handwriting OCR Testbed」· C语言 代码 · 共 21 行
C
21 行
/*# proc: cwrite - Non-fortrany version of the original C program(arg iter is now an int, not an int pointer). Also, it now writes to stderr,not stdout. */#include <stdio.h>/* cwrite_ 27-May-92 09:06 * write a line with an integer, a CR, but no NL */voidcwrite(iter)int iter;{ if(isatty(0)) { fprintf(stderr, "%4d\r", iter); fflush(stderr); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?