fork(22) download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main() {
  5. char first[256] = "first";
  6. char second[] = "second";
  7. strcat(first, second);
  8. puts(first);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 2160KB
stdin
Standard input is empty
stdout
firstsecond