Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
構造体があり、その中にポインターが必要です (それぞれが char 配列を指しています)。構造体内のこれらのポインターの 1 つを指すポインターを作成するにはどうすればよいですか?
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