主页 > 程序语言 > C语言struct结构体使用问题

C语言struct结构体使用问题

2023-12-09 22:39来源:m.sf1369.com作者:宇宇

如果按照你的思路,定义两个结构体:

struct { int num; } ;

struct { int value; } ;

struct a; // 你觉得这里的a是上面的哪一个结构体呢?

所以结构体是要有名字的,或者定义的同时声明变量:

1)

struct a{ int num; } ;

struct b{ int value; } ;

struct a aa;

struct b bb;

2)

typedef struct { int num; }a ;

typedef struct { int value; }b ;

a aa;

b bb;

3)

struct { int num; } aa;

struct { int value; } bb;

相关推荐

哪些编程语言是函数式的

程序语言 2024-01-14

VB编程的函数详解

程序语言 2024-01-02

c语言扑克牌问题

程序语言 2023-12-28

iphone语言与地区有什么用?

程序语言 2023-12-19

C语言程序,怎么使用,

程序语言 2023-12-17

把word嵌入到C#程序中

程序语言 2023-11-26

HTML是不是编程语言?

程序语言 2023-11-17