?? test03.cm
字號:
/*
On base of test01
target:
undefined symble
visit global variable
if statement
variable declaration in Compound statement
function declaration in compound statement
error: line 27
*/
int x;
void main()
{
int y;
x = 1;
y = 2+x;
z = y;
if (y == 2){
int z;
z = y;
}
else if (y == 2){
int z;
z = x;
}
if (y == 2){
void f(int a,int b){
a = b =3;
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -