test.c
来自「Renesas(Hitachi SuperH)SH7708的UCOS2源码,uC」· C语言 代码 · 共 36 行
C
36 行
#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 + =
减小字号Ctrl + -
显示快捷键?