Hallo, i have not understand the difference of locating constants in the following example: Txt1 is located in Rom, while Txt2 (declared inside a function) is a variable in Ram and will be copied in ram.
const char Txt1[] = "Hallo1"; void main(void) { const char Txt2[] = "Hallo2"; char c1, c2; c1 = Txt1[0]; c2 = Txt2[0]; while(1) ; }