• Does C51 support 'Link List' data structure?
    Dear Expert, I have a simple C program with 'linklist' data structure processing as below. ////////////////////////////////////// #include <stdio.h> #include <stdlib.h> typedef struct node{...
  • Re: About structure definition
    To avoid flames, if I try to reply a cannot find a 'post' nor 'preview' button, so I must start a new message thread. Sorry for the inconvinience. Dear KEIL Support Team, can you solve the problem...
  • About Structure Definition
    Dear Friends&#65306; I never met the following definition before, would you help me to find out how they can define them like this? #define ResetInfo(info) info.cmd = 0; info.status = MI_OK; info...
  • What a mess! (about structures)
    The following is a part of one of my source file: struct s{char *p}; struct s code a = {"string1"}; struct s code b = {"string2"}; I wonder how the structures, 'a' and 'b', are arranged in the memory...
  • What a mess! (about structures)
    The following is a part of one of my source file: struct s{char *p}; struct s code a = {"string1"}; struct s code b = {"string2"}; I wonder how the structures, 'a' and 'b', are arranged in the memory...