fork download
  1. #include <string.h>
  2.  
  3. int main()
  4. {
  5. char t1[] = "Hi hello";
  6. char *t2 = " strcat";
  7.  
  8. printf("%s", strcat(t1, t2));
  9. }
Runtime error #stdin #stdout 0.01s 1860KB
stdin
Standard input is empty
stdout
Standard output is empty