?? printer.c
字號:
/* Demonstrates printer output. */
/* stdprn is not ANSI Standard */
#include <stdio.h>
int main( void )
{
float f = 2.0134;
fprintf(stdprn, "\nThis message is printed.\r\n");
fprintf(stdprn, "And now some numbers:\r\n");
fprintf(stdprn, "The square of %f is %f.", f, f*f);
/* Send a form feed. */
fprintf(stdprn, "\f");
return 0;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -