fork(1) download
  1. #include<stdio.h>
  2. #include<stdlib.h>
  3.  
  4. struct Graph
  5. {
  6. int V;
  7. };
  8.  
  9. int main()
  10. {
  11. int V = 4;
  12. struct Graph* graph = (struct Graph*) malloc(sizeof(struct Graph));
  13. graph->V = V;
  14. printf("%p", graph);
  15. return 0;
  16. }
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
0x2b91f4403010