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