test.c

来自「为电力系统开发保护设备装置通讯的源代码 采用串口通讯, ret hat 9下 」· C语言 代码 · 共 21 行

C
21
字号
#include <stdio.h>

struct test1;
struct test2
{
	int a;
	struct test1 *p1;
};

struct test1
{
	int b;
	struct test2 *p2;
};

int main()
{
	struct test2 tt2;
	struct test1 tt1;
	return 0;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?