• Why this program can not run correctly?
    /* Following is a piece of program that I want the two tasks call the same function 'CommonTask'. But either running on Keil UV2 or other simulators it always runs incorrectly to an unexpected code address...
  • C167L.LIB not correctly linked
    When setting USEDEXTONLY for my project, I get the following error during the linking process: *** ERROR L127: UNRESOLVED EXTERNAL SYMBOL SYMBOL: ?C_INITSECSTART MODULE: START_V3.obj (?C_STARTUP...
  • 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...
  • 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...
  • 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...