Advertisement
Guest User

Untitled

a guest
Sep 20th, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main()
  5. {
  6. char part[]="malako";
  7. char ch[]="poustaras";
  8. strcat(part, ch);
  9. printf("%s\n",part);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement