fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main()
  5. {
  6. char str1[10]= "awesome";
  7. char str2[10];
  8. char str3[10];
  9.  
  10. strcpy(str2, str1);
  11. strcpy(str3, "well");
  12. strcat(str2, " ");
  13. strcat(str2, str3);
  14. puts(str2);
  15. puts(str3);
  16.  
  17. return 0;
  18. }
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
awesome well
ll