I know that to access a normal variable inside a pointer structure I can use this syntax:
struct teste {
int valor;
int *aponta;
};
struct teste testando, *testado;
testado = &testando;
testado -> valor = 10;
However, how to access the aponta
pointer that is contained in the structure, using the testado
??