fork download
  1. char *getString()
  2. {
  3. char str[] = "Will I be printed?";
  4. return str;
  5. }
  6. int main()
  7. {
  8. printf("%s", getString());
  9. getchar();
  10. }
  11.  
Success #stdin #stdout 0s 4556KB
stdin
Standard input is empty
stdout
(null)