fork download
  1. #include <stdio.h>
  2.  
  3. struct teste {
  4. int valor;
  5. int *aponta;
  6. };
  7.  
  8. int main() {
  9.  
  10. struct teste testando, *testado;
  11.  
  12. testado = &testando;
  13. testado->valor = 10;
  14. int teste2 = 123;
  15. testado->aponta = &teste2;
  16. *(testado->aponta) = 456;
  17. printf("%d %d", teste2, *(testado->aponta));
  18. }
Success #stdin #stdout 0s 4164KB
stdin
Standard input is empty
stdout
456 456