?? test.c
字號:
#include <stdio.h>
#include <stdlib.h>
int x = 0;
int y = 5;
int fun1()
{
extern p, q;
printf("p is %d, q is %d\n", p, q);
return 0;
}
int p = 8;
int q = 10;
int main()
{
fun1();
printf("x is %d, y is %d\n", x, y);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -