0

構造体があり、その中にポインターが必要です (それぞれが char 配列を指しています)。構造体内のこれらのポインターの 1 つを指すポインターを作成するにはどうすればよいですか?

4

1 に答える 1

0

Cを仮定:

struct foo {                // a struct
  char (*a)[10], (*b)[10];  // pointers to arrays[10] of char
};

struct foo x;               // create an object
char (**p)[10];             // pointer to pointer to array[10] of char
p = &x.a;                   // point to one of the pointers inside the struct
于 2013-01-14T09:05:19.767 に答える