访问结构体中的指针变量
#define SIZE 9
struct circ_buff{
char buff[SIZE];
int total = 0;
char *tail;
char *head;
} gsm;
谁能告诉我如何访问“tail”& “头”?使用变量 gsm (gsm 应该用作结构变量而不是指针)。
#define SIZE 9
struct circ_buff{
char buff[SIZE];
int total = 0;
char *tail;
char *head;
} gsm;
Can anybody tell me how to access "tail" & "head"? Using the variable gsm (gsm should be used as struct variable not as a pointer).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
或
输出:
or
output: