次のプログラムをコンパイルすると、エラー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
@Eregrith:ありがとうございました – Randomblue
アップして、この正確な問題に遭遇しました。しかし、私の場合、それはあまり明らかではなかった – Anonymous