Hi everybady,
i have problem with some code
char ONE[1];
char MENU[][maxItemSize] ={"Date","Time","Alarm","Format","Zone","Daylight","BACK"};
.
..
...
strcpy(ONE,"Proba");
I want change MENU[1] with ONE //MENU[1]=Time and i want MENU[1]=Proba
///
when ONE is string i will use ONE.toCharArray(MENU[2], ONE.length()+1); and everything is work but with ONE=char i dont know.
Somebody can help me, thanks.