⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test.c

📁 Renesas(Hitachi SuperH)SH7708的UCOS2源码,uC/OS-II 版本2.52.
💻 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 + -