fork download
  1. #include<stdio.h>
  2. #include<string.h>
  3. int main()
  4. {
  5. char source[]= "A thousand journey is started by taking the first step.",destination[100];
  6. strcpy(destination,source);
  7. puts(destination);
  8. return 0;
  9. }
Success #stdin #stdout 0s 5332KB
stdin
Standard input is empty
stdout
A thousand journey is started by taking the first step.