Day 1 - Variable의 선언 vs 정의
·
IDEC 교육/Embedded C
Declare vs Define선언: Type을 Comiler에게 알려주는 역할 (메모리 할당 X)extern int a;정의: 변수명 지정으로 실체화 (메모리 할당 O)int a;