• 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...
  • moving returned character to string
    always getting an syntax error 213: leftside of asn-op not an lvalue void scherm (void) { char s [10]; char i,y; printf("volgende string stond weggeschreven: "); for (i=0;i < 10;i++) { ...
  • array of pointers to arrays of pointers to string
    Yes, the real problem is, I would like to write an easy to switch, multilingual menu. And I imagine, an array like that should work. But there seems to be some brain blocking in 1. How to define and...
  • 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...
  • Variable to string
    Hi all. i just want to know how can i convert variables to strings for eg-, unsigned char b[2]; unsigned char a; void main() { a=20; a=b; print_lcd(b); } i want to print the value to 'a...