错误 C2143:语法错误:缺少 ')'在“*”之前

发布于 2024-10-26 12:31:55 字数 251 浏览 4 评论 0原文

我有以下头文件,但不断收到: 语法错误:在 '*' 之前缺少 ')' 在原型声明行上。有什么问题吗?

typedef struct queue{
int count;
int first;
int last;
int *q;
};

void init_queue(queue *q);
void enqueue(queue *q, int x);
int dequeue(queue *q);
int empty(queue *q);

I have the following header file, but keep on getting: syntax error : missing ')' before '*'
on the prototype declaration lines. what's the problem?

typedef struct queue{
int count;
int first;
int last;
int *q;
};

void init_queue(queue *q);
void enqueue(queue *q, int x);
int dequeue(queue *q);
int empty(queue *q);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一直在等你来 2024-11-02 12:31:55

你从来没有完成你的 typedef。您可能打算这样做:

typedef struct queue{
int count;
int first;
int last;
int *q;
} queue;

您需要在 typedef 的末尾为您的类型定义一个别名。如果您没有 typedef,则必须像这样编写原型:

void init_queue(struct queue *q);
// etc.

You never finished your typedef. You probably meant to do:

typedef struct queue{
int count;
int first;
int last;
int *q;
} queue;

You need to define an alias for your type at the end of the typedef. If you didn't have a typedef, you'd have to write your prototypes like so:

void init_queue(struct queue *q);
// etc.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文