fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. typedef struct ponto {
  5. int a, b;
  6. } Estrutura;
  7.  
  8. typedef Estrutura* Ponteiro;
  9.  
  10. int main() {
  11. Ponteiro p = malloc(sizeof(Estrutura));
  12. printf("%p", (void *)p);
  13. }
  14.  
  15. //https://pt.stackoverflow.com/q/328613/101
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
0x55d681010010