fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char *p,*q;
  5. p=(char *)malloc(25);
  6. q=(char*) malloc(25);
  7. strcpy(p,"amazon" );
  8. strcpy(q,"hyd");
  9. strcat(p,q);
  10. printf("%s",p);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 9416KB
stdin
Standard input is empty
stdout
amazonhyd