error C2143: syntax error : missing ';' before 'type'
C언어,ARM / 2020. 6. 20. 22:54
error C2143: syntax error : missing ';' before 'type'
cpp가 아닌, c파일에서, 변수는 처음에 선언해주어야한다. 중간에 선언할 경우, 에러 발생.
(cpp파일에서는 잘 동작함)
int a;
a=1+10;
int b; <<==== error C2143: syntax error : missing ';' before 'type'
b=a+1;
'C언어,ARM' 카테고리의 다른 글
ATmega,Xmega,AVR Studio - 문자열 프로그램메모리에서 읽어오기 (0) | 2020.06.27 |
---|---|
xmega - WDT reset 와치독 타이머 (0) | 2020.06.27 |
AVR Studio - cannot execute empty custom programming tool command. please provide again (0) | 2020.06.20 |
stm32 - WDT (0) | 2020.06.20 |
stm32 - SysTick 설정 (0) | 2020.06.20 |