fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5.  
  6. char first[10] = "something", second[10] = "smtelse";
  7.  
  8. strcat(first, second);
  9.  
  10. puts(first);
  11.  
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
somethingsmtelse