For some reason I want to assign value to the double pointer in struct member. I have structure that have 3 member's first is int, second is pointer to that int, and third is double pointer, which point to second member (to pointer). That third member don't know how to define as well. Here is source:
#include <iostream.h>
typedef struct {
int a;
int *b;
int **c;
} st;
st st1, *st2 = &st1;
void main(){
// first define a member
st1.a = 200;
// second assign b pointer member to a
st2->b = &st1.a;
// third assign c pointer member to b (but that don't work)
*(st2)->c = st2->b;
}
OS: win 7, 64, c++ (c++ Builder 2010)
void main()isn't legal in C or C++... – Kerrek SB Dec 11 '11 at 21:12int **adouble pointer-- which sounds like it means a pointer to double, i.e.double *. Call itpointer to pointer to int. – AAT Dec 11 '11 at 21:17