fork download
  1. #include <stdio.h>
  2.  
  3. typedef struct A {
  4. int i;
  5. } A;
  6.  
  7. int main(void) {
  8. A *a = malloc(sizeof(A));
  9. a->i = 42;
  10. printf("%d", a->i);
  11. free(a);
  12. return 0;
  13. }
Success #stdin #stdout 0s 2380KB
stdin
Standard input is empty
stdout
42