📄 test.c
字号:
#include "includes.h"
int MyTest(int a , int b, int c1, int c2,int c3)
{
int c;
int d;
int cc;
cc = 3;
d = 1;
c = cc +d;
c = a + b ;
d = c1 +c2 ;
d = d + c3 ;
c = c + d ;
return c;
}
void test1();
int test3(int b)
{
int a;
int c;
a = 1;
a = MyTest(1,2,3,4,5);
return a;
}
void test1(int a)
{
a = a + 1;
}
void test2(int a)
{
test1(1);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -