• string variables
    Hallo everybody, Please allow me a stupid question: Can I use string variables in C++ with uVision, like I do with VC++6 ? Peace and inspiration to all Andy
  • STRINGS
    iam working with cygnal microcontrollers c8051f124,we are generating our own protocol using pwm . i have actually implemented my project in 2 phases,1in c and another in assembly. in the c file iam...
  • Array of string
    I use a AT89S52 and programming with KEIL C51.How can I implement a look-up table for string ? My array example : array[0] = "ABC" array[1] = "Hello" array[2] = "Good morning" array[3] = "Good...
  • Return Pointer to local string, destroys the string or not?
    This forum may not be the best to ask the question, but the answers on the other forums (that i know) were generally with respect to C for desktop pc (where memory management is different from that in...
  • number of strings in array
    Hello all, I have the following code: const char BaudRate[][] = {"600","1200","2400","4800","9600","19200","38400","56700"}; . . . Idx = 0; while (Idx++ < (sizeof(BaudRate)/sizeof(BaudRate...