fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. typedef struct {
  5. char *Anakin;
  6. } sithLord;
  7.  
  8. int main()
  9. {
  10. sithLord *itsOver = (sithLord *) malloc(sizeof(sithLord));
  11.  
  12. itsOver->Anakin = "I have the high ground.";
  13.  
  14. printf("%s\n", itsOver->Anakin);
  15. return 0;
  16. }
Success #stdin #stdout 0s 10320KB
stdin
Standard input is empty
stdout
I have the high ground.