program10_12.c
来自「[C语言入门经典(第4版)]整本书的源码!值得推荐!全部是最简单的源码!」· C语言 代码 · 共 12 行
C
12 行
/* Program 10.11 Printing on a printer - where else? */
#include <stdio.h>
int main(void)
{
fprintf(stdprn, "The barber shaves all those who do not"
" shave themselves.");
fprintf(stdprn, "\n\rQuestion: Who shaves the barber?\n\r");
fprintf(stdprn, "\n\rAnswer: She doesn't need to shave.\f");
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?