Hi, Could anyone explain the storage area of the below type of variables in MSP430. int a; - local variable declared inside a function int b; - Global variable extern int b; - extern global variable static int c; - static variable declared inside a function static int d; - Global static variable const int e; - constant variable declared inside a function const int f; - Global constant variable Thanks in advance
↧