fork download
  1. #include<stdio.h>
  2. #include<string.h>
  3. int main()
  4. {
  5. char str1[20] = "Hello", str2[20] = "World";
  6. printf("%s", strcpy(str2, strcat(str1, str2)));
  7. return 0;
  8. }
Success #stdin #stdout 0s 5476KB
stdin
Standard input is empty
stdout
HelloWorld