fork download
  1. char *getString()
  2. {
  3. char *str = "Nice test for strings";
  4. return str;
  5. }
  6.  
  7. int main()
  8. {
  9. printf("%s", getString());
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 4536KB
stdin
Standard input is empty
stdout
(null)