?? listchars.c
字號:
/* listchars.c * purpose: list individually all the chars seen on input * output: char and ascii code, one pair per line * input: stdin, until the letter Q * notes: usesful to show that buffering/editing exists */#include <stdio.h>main(){ int c, n = 0; while( ( c = getchar()) != 'Q' ) printf("char %3d is %c code %d\n", n++, c, c );}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -