編譯以下程序時,出現錯誤expected ‘;’ before numeric constant
。我究竟做錯了什麼?期望';'數字常量之前
#include <stdio.h>
#define GPIOBase 0x4002 2000
uint32_t * GPIO_type(char type);
int main(void)
{
GPIO_type('G');
return 0;
}
uint32_t * GPIO_type(char type)
{
return (uint32_t *) GPIOBase;
}
使用'gcc -E'查找並終止預處理器錯誤。 – Eregrith 2012-03-12 10:21:27
@Eregrith:感謝 – Randomblue 2012-03-12 10:35:43
進行投票,遇到了這個確切的問題。但在我看來,這並不明顯 – Anonymous 2012-07-18 17:46:03