fork download
  1. #include <stdio.h>
  2.  
  3. struct lol{
  4. int x;
  5. char y;
  6. char *s;
  7. };
  8.  
  9. int main(int argc, char *argv[]){
  10. struct lol kek;
  11. kek.x = 2;
  12. kek.y = 's';
  13. kek.s = "string";
  14.  
  15. printf("%s\n", kek.s);
  16. }
  17.  
Success #stdin #stdout 0s 2156KB
stdin
Standard input is empty
stdout
string