fork(1) download
  1. #include <stdio.h>
  2.  
  3. typedef struct { int x; } MinhaEstrutura;
  4.  
  5. typedef MinhaEstrutura * MeuTipo;
  6.  
  7. int main(void) {
  8. MinhaEstrutura dado = { 1 };
  9. MeuTipo var = &dado;
  10. printf("%d", var->x);
  11. }
  12.  
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
1