gpt4 book ai didi

c - "expected'; ',' 或 'or' ) 'before' * 'token"使用结构时出错

转载 作者:行者123 更新时间:2023-11-30 20:20:54 25 4
gpt4 key购买 nike

全部

我在使用结构时遇到一些问题。
源码如下所示。

main.c

#include <stdio.h>
#include "info.h"

_Rbuffer Rb;

void write(_Rbuffer Rb *rb)
{
printf("write function\n");
}


void main(void)
{

printf("Hello World\n");

}

信息.h

#include <stdint.h>

typedef struct
{
uint8_t Button1;
} _Rbuffer;

extern _Rbuffer Rb;

编译时出现如下错误。

root@test-VirtualBox:~/sample# gcc main.c
main.c:6:24: error: expected ‘;’, ‘,’ or ‘)’ before ‘*’ token
void write(_Rbuffer Rb *rb)
^
root@test-VirtualBox:~/sample#

我目前无法更改 info.h。

我声明了一个结构体,但不知道为什么会发生错误。

如何解决这个问题?

最佳答案

1 您应该使用 int main 而不是 void main

2 您应该使用 void write(_Rbuffer *rb) 而不是 void write(_Rbuffer Rb *rb)

关于c - "expected'; ',' 或 'or' ) 'before' * 'token"使用结构时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44425491/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com