📄 jump.c
字号:
/* This program is used to test the "jump" command. There's nothing particularly deep about the functionality nor names in here. */#ifdef PROTOTYPESstatic int square (int x)#elsestatic int square (x) int x;#endif{ return x*x;}int main (){ int i = 99; i++; i = square (i); i--; return 0;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -