jump.c
来自「模拟嵌入式硬件平台的软件源代码」· C语言 代码 · 共 25 行
C
25 行
/* 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 + =
减小字号Ctrl + -
显示快捷键?