Как присвоить значения массиву struct во время выполнения? - PullRequest
2 голосов
/ 26 ноября 2011

Я объявил массив struct и инициализировал его во время компиляции.

Теперь, для целей модульного тестирования, я хотел бы инициализировать его из функции, которую я могу вызвать из main () и из моих модульных тестов.

По какой-то причине, вероятно, с использованием 16-часового кодирования марафонов и истощения, я не могу этого понять.

Ответы [ 3 ]

3 голосов
/ 26 ноября 2011

Итак, если у вас есть

struct foo {
   int a;
   int b;
};

struct foo foo_array[5] = {
 { 0, 0 }, { 1, 1 }, { 2, 2 }
};


int main() { 
     memcpy(foo_array, some_stuff, sizeof(foo_array)); // should work
    ...

ИЛИ вы можете:

int main() {
    int i;
    for ( i = 0; i < sizeof(foo_array)/sizeof(struct foo); i++ ) {
           init(&foo_array[i]);
    }
}

, но, не глядя на ваш код, трудно сказать, что является причиной проблемы ... я уверен, что это, вероятно, что-то очень тривиальное, что вы упускаете из виду, потому что вы устали и были в этом в течение 16 часов.

1 голос
/ 26 ноября 2011
typedef struct {
  int ia;
  char * pc;
} St_t;

void stInit(St_t * pst) {
  if (!pst)
    return;

  pst->ia = 1;
  pst->pc = strdup("foo");

  /* Assuming this function 'knows' the array has two elements, 
     we simply increment 'pst' to reference the next element. */
  ++ pst;

  pst->ia = 2;
  pst->pc = strdup("bar");

}

void foo(void) {
  /* Declare 'st' and set it to zero(s)/NULL(s). */
  St_t st[2] = {{0}, {0}};

  /* Initialise 'st' during run-time from a function. */
  stInit(st);

  ...
}
0 голосов
/ 26 ноября 2011

см. Это:

struct Student
{
    int rollNo;
    float cgpa;
};

int main()
{
    const int totalStudents=10;

    Student studentsArray[totalStudents];

    for(int currentIndex=0; currentIndex< totalStudents; currentIndex++)
    {
          printf("Enter Roll No for student # %d\n" , currentIndex+1);
          scanf("%d\n", &studentsArray[currentIndex].rollNo);

          printf("Enter CGPA for student # %d\n", currentIndex+1);
          scanf("%d\n", &studentsArray[currentIndex].cgpa);
     }
}
...