• link list
    Hello everyone, I am studying link list in c I have a project in which I have lookup table of rpm (clocks used to load the timer used for motor). This rpm table, I am taking in an array Now I want...
  • Link List
    xdata struct EEPROM { unsigned int Last_Data; struct EEPROM *Node; }; struct EEPROM xdata * xdata p; p = (struct EEPROM xdata *)0x0FF6; if i will print the following statement printf("Size...
  • j-link and keil uvision
    Hello, Is there someone using Keil uvision together with the J-Link interface from segger? Is it possible to download code to an external / internal flash and sdram / sram? Is it possible...
  • problem in the link list
    xdata struct WindowList{ struct Windows * thisW; struct WindowList * NextWindow; }; xdata struct WindowList temp; temp=temp.Next;//this line is generating an error.'=' incompatible operand What...
  • doubly linked lists
    Hi, I'm trying to execute the following: Sort the list by book title and print the list of titles and author's last names after the list is sorted. (Don't worry about the rules for "The" and "A") ...