?? 1.file類型指針與stdin理解.txt
字號:
#include<stdio.h>
void main(void)
{
int length;
length=sizeof(stdin);
printf("stdin length=%d\n",length);
length=sizeof(stdout);
printf("stdout length=%d\n",length);
}
/*These pointers can be used as arguments to functions. Some functions,
such as getchar and putchar, use stdin and stdout automatically.*/
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -