Tool/software: TI C/C++ Compiler
Hi everyone
I read the following categorization in the "F2837xd_Microcontroller_MDW_2-0.pdf" for the C/C++ code that have wrote in the IDE for C2000:
Now what if we write :
int x = 2;
int y = 2;
void main (void)
{
long z = InitVal;
z = x + y;
}
which section is used for "InitVal" for the "z" local variable ?
Thank you All